9 lines
274 B
Bash
9 lines
274 B
Bash
# Local, non-secret runtime configuration. Copy to .env; never commit real credentials.
|
|||
|
|
APP_ENV=development
|
||
|
|
LOG_LEVEL=INFO
|
||
|
|
API_PORT=8000
|
||
|
|
WEB_PORT=8080
|
||
|
|
CORS_ORIGINS=http://localhost:8080
|
||
|
|
# Deliberately fixed to false in compose for this MVP.
|
||
|
|
AUTOMATED_OUTREACH_ENABLED=false
|