All checks were successful
Release / Scraper / Test (push) Successful in 10s
Release / UI / Build (push) Successful in 26s
Release / v2 / Build ui-v2 (push) Successful in 17s
Release / Scraper / Docker (push) Successful in 47s
Release / UI / Docker (push) Successful in 56s
CI / Scraper / Lint (pull_request) Successful in 7s
CI / Scraper / Test (pull_request) Successful in 8s
CI / UI / Build (pull_request) Successful in 16s
CI / Scraper / Docker Push (pull_request) Has been skipped
CI / UI / Docker Push (pull_request) Has been skipped
Release / v2 / Docker / ui-v2 (push) Successful in 56s
Release / v2 / Test backend (push) Successful in 4m35s
iOS CI / Build (pull_request) Successful in 4m28s
Release / v2 / Docker / backend (push) Successful in 1m29s
Release / v2 / Docker / runner (push) Successful in 1m39s
iOS CI / Test (pull_request) Successful in 9m51s
- backend/: Go API server and runner binaries with PocketBase + MinIO storage - ui-v2/: SvelteKit frontend rewrite - docker-compose-new.yml: compose file for the v2 stack - .gitea/workflows/release-v2.yaml: CI/CD for backend, runner, and ui-v2 Docker Hub images - scripts/pb-init.sh: migrate from wget to curl, add superuser bootstrap for fresh installs - .env.example: document DOCKER_BUILDKIT=1 for Colima users
21 lines
872 B
Plaintext
21 lines
872 B
Plaintext
# libnovel UI — environment variables
|
|
# Copy to .env and adjust; do NOT commit with real secrets.
|
|
|
|
# Public URL of the scraper API (used by SvelteKit server-side load functions)
|
|
# In docker-compose this is the internal service name
|
|
SCRAPER_API_URL=http://localhost:8080
|
|
|
|
# Public URL of PocketBase (used by SvelteKit server-side load functions)
|
|
POCKETBASE_URL=http://localhost:8090
|
|
|
|
# PocketBase admin credentials (server-side only, never exposed to browser)
|
|
POCKETBASE_ADMIN_EMAIL=admin@libnovel.local
|
|
POCKETBASE_ADMIN_PASSWORD=changeme123
|
|
|
|
# Public-facing MinIO URL (used to rewrite presigned URLs for the browser)
|
|
# In dev this is localhost; in prod set to your MinIO public domain
|
|
PUBLIC_MINIO_PUBLIC_URL=http://localhost:9000
|
|
|
|
# Secret used to sign auth tokens stored in cookies (generate with: openssl rand -hex 32)
|
|
AUTH_SECRET=change_this_to_a_long_random_secret
|