dc9d5fc301
CI / backend (push) Successful in 1m0s
CI / frontend (push) Successful in 14s
CI / format (push) Successful in 52s
CI / db-tests (push) Successful in 1m10s
CI / backend (pull_request) Successful in 52s
CI / frontend (pull_request) Successful in 13s
CI / format (pull_request) Successful in 50s
CI / db-tests (pull_request) Successful in 51s
Deploy Staging / deploy (push) Successful in 17s
Security / secrets (pull_request) Successful in 4s
Security / dependencies (pull_request) Successful in 55s
Security / secrets (push) Successful in 4s
Security / dependencies (push) Successful in 56s
21 lines
638 B
Bash
21 lines
638 B
Bash
# Copy to .env and fill in. docker-compose reads these.
|
|
POSTGRES_PASSWORD=change-me
|
|
|
|
# Google OAuth2 credentials (create at https://console.cloud.google.com/apis/credentials)
|
|
GOOGLE_CLIENT_ID=
|
|
GOOGLE_CLIENT_SECRET=
|
|
|
|
# AI mode: Disabled | LocalOllama | CloudOpenAi
|
|
AI_MODE=Disabled
|
|
|
|
# Origin the API allows for CORS (the frontend container).
|
|
FRONTEND_ORIGIN=http://localhost:8081
|
|
|
|
# Dev mode: shows the "test/dev" banner and caps the initial sync.
|
|
# Set DEV_MODE=true and MAX_MESSAGES=1000 to test against a large mailbox.
|
|
DEV_MODE=false
|
|
MAX_MESSAGES=0
|
|
|
|
# Nightly DB backup rotation (days of dumps to keep in ./backups)
|
|
BACKUP_KEEP_DAYS=7
|