21 lines
409 B
Plaintext
21 lines
409 B
Plaintext
# shellcheck disable=all
|
|
|
|
# Database
|
|
PG_USER=""
|
|
PG_PASS=""
|
|
PG_DB=""
|
|
|
|
# Server
|
|
JWT_SECRET=""
|
|
CSRF_SECRET="" # Should be 32 bytes long
|
|
ADMIN_USERNAME=""
|
|
ADMIN_PASSWORD=""
|
|
ACCOUNT_CREATION_ENABLED="0"
|
|
LOG_LEVEL="info"
|
|
APP_ENV="production"
|
|
DOMAIN="localhost"
|
|
FRONTEND_URL="http://localhost:3000"
|
|
|
|
# Frontend (build-stage)
|
|
VITE_ACCOUNT_CREATION_ENABLED="$ACCOUNT_CREATION_ENABLED"
|
|
VITE_VIEW_COOKIE_DOMAIN="$DOMAIN" |