admin / Apex
publicBid Management and Orchestration Tool with AI Capability
Apex / Synapse-Apexv2 / .env.example
714 B · main
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # Copy to .env and edit. docker compose reads .env automatically. # --- Database --- POSTGRES_USER=apex POSTGRES_PASSWORD=apex_dev_pw POSTGRES_DB=apex # --- Security --- JWT_SECRET=change-me-to-a-long-random-string ACCESS_TOKEN_MINUTES=15 REFRESH_TOKEN_DAYS=7 # --- Seed administrator (created on first startup) --- [email protected] ADMIN_INITIAL_PASSWORD=ChangeMe123! # --- Anthropic AI --- # Leave ANTHROPIC_API_KEY blank to run with AI disabled (graceful degradation). ANTHROPIC_API_KEY= ANTHROPIC_MODEL=claude-opus-4-8 ANTHROPIC_MODEL_LIGHT=claude-haiku-4-5 # --- Uploads --- UPLOAD_MAX_MB=50 UPLOAD_DIR=/data/uploads # --- Misc --- DEFAULT_CURRENCY=GBP CORS_ORIGINS=http://localhost:3000 |