Some checks failed
CI / v3 / Check ui (pull_request) Failing after 15s
CI / v3 / Test backend (pull_request) Failing after 16s
CI / v3 / Docker / backend (pull_request) Has been skipped
CI / v3 / Docker / runner (pull_request) Has been skipped
CI / v3 / Docker / ui (pull_request) Has been skipped
- Remove all pre-v3 code: scraper, ui-v2, backend v1, ios v1+v2, legacy CI workflows - Flatten v3/ contents to repo root - Add Doppler secrets management (project=libnovel, config=prd) - Add justfile with doppler run wrappers for all docker compose commands - Strip hardcoded env fallbacks from docker-compose.yml - Add minimal README.md - Clean up .gitignore
21 lines
874 B
Plaintext
21 lines
874 B
Plaintext
# libnovel UI — environment variables
|
|
# Copy to .env and adjust; do NOT commit with real secrets.
|
|
|
|
# Internal URL of the backend API (used by SvelteKit server-side load functions)
|
|
# In docker-compose this is the internal service name
|
|
BACKEND_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
|