Datastar-pro is fetched from a private Gitea repo (ryan/vendor-libs) using VENDOR_TOKEN for CI/Docker builds, with a local fallback from ../optional/ for development. DaisyUI is pinned to v5.5.19 instead of tracking latest. Downloaded files are now gitignored and fetched at build time via 'task download', which is a dependency of both build and live tasks.
21 lines
691 B
Plaintext
21 lines
691 B
Plaintext
# Log level (TRACE, DEBUG, INFO, WARN, ERROR). Defaults to INFO.
|
|
# LOG_LEVEL=DEBUG
|
|
|
|
# SQLite database path. Defaults to data/games.db.
|
|
# DB_PATH=data/games.db
|
|
|
|
# Application URL for invite links. Defaults to https://games.adriatica.io.
|
|
# APP_URL=http://localhost:7331
|
|
|
|
# Server port. Defaults to 7331.
|
|
# PORT=7331
|
|
|
|
# Goose CLI migration config (only needed for running goose manually)
|
|
# Gitea API token for downloading datastar-pro from private repo (CI/Docker only).
|
|
# Not needed for local dev — falls back to copying from ../optional/.
|
|
# VENDOR_TOKEN=
|
|
|
|
GOOSE_DRIVER=sqlite3
|
|
GOOSE_DBSTRING=data/games.db?_pragma=foreign_keys(1)&_pragma=journal_mode(WAL)
|
|
GOOSE_MIGRATION_DIR=db/migrations
|