- Remove executable permissions from configuration files (.editorconfig, .env.example, .gitignore) - Remove executable permissions from documentation files (README.md, LICENSE, SECURITY.md) - Remove executable permissions from web assets (HTML, CSS, JS files) - Remove executable permissions from data files (JSON, SQL, YAML, requirements.txt) - Remove executable permissions from source code files across all apps - Add executable permissions to Python
15 lines
390 B
Plaintext
15 lines
390 B
Plaintext
APP_ENV=dev
|
|
APP_HOST=127.0.0.1
|
|
APP_PORT=8011
|
|
DATABASE_URL=sqlite:///./data/coordinator.db
|
|
CLIENT_API_KEYS=${CLIENT_API_KEY},client_dev_key_2
|
|
MINER_API_KEYS=${MINER_API_KEY},miner_dev_key_2
|
|
ADMIN_API_KEYS=${ADMIN_API_KEY}
|
|
HMAC_SECRET=change_me
|
|
ALLOW_ORIGINS=*
|
|
JOB_TTL_SECONDS=900
|
|
HEARTBEAT_INTERVAL_SECONDS=10
|
|
HEARTBEAT_TIMEOUT_SECONDS=30
|
|
RATE_LIMIT_REQUESTS=60
|
|
RATE_LIMIT_WINDOW_SECONDS=60
|