34 lines
645 B
Plaintext
34 lines
645 B
Plaintext
# App
|
|
APP_NAME=trustcontact
|
|
APP_ENV=develop
|
|
APP_PORT=3000
|
|
APP_BASE_URL=http://localhost:3000
|
|
APP_BUILD_HASH=dev
|
|
|
|
# Database
|
|
DB_DRIVER=sqlite
|
|
DB_SQLITE_PATH=data/app.sqlite3
|
|
DB_POSTGRES_DSN=
|
|
|
|
# CORS (comma-separated)
|
|
CORS_ORIGINS=http://localhost:3000
|
|
CORS_HEADERS=Origin,Content-Type,Accept,Authorization,HX-Request
|
|
CORS_METHODS=GET,POST,PUT,PATCH,DELETE,OPTIONS
|
|
CORS_CREDENTIALS=true
|
|
|
|
# Sessions
|
|
SESSION_KEY=change-me-in-prod
|
|
|
|
# SMTP / Email sink
|
|
SMTP_HOST=localhost
|
|
SMTP_PORT=1025
|
|
SMTP_USERNAME=
|
|
SMTP_PASSWORD=
|
|
SMTP_FROM=noreply@example.test
|
|
SMTP_FROM_NAME=Trustcontact
|
|
EMAIL_SINK_DIR=data/emails
|
|
|
|
# Flags
|
|
AUTO_MIGRATE=true
|
|
SEED_ENABLED=false
|