Files
MarketingTool/.env.example
T

30 lines
1.2 KiB
Bash
Raw Normal View History

# Portable deployment example. Keep this file secret-free; supply SESSION_SECRET via a secret manager.
APP_ENV=production
2026-09-02 17:38:50 +02:00
LOG_LEVEL=INFO
API_PORT=8000
WEB_PORT=8080
CORS_ORIGINS=https://your-approved-web-origin.example
DATA_DIR=/data
# Required in production; generate at least 32 random characters outside this file.
SESSION_SECRET=
2026-09-03 16:24:53 +02:00
# Mandatory for first-run administrator provisioning. Remove both after bootstrap.
2026-09-02 17:45:57 +02:00
BOOTSTRAP_ADMIN_EMAIL=
BOOTSTRAP_ADMIN_PASSWORD=
# Hard safety default; this release has no delivery capability.
2026-09-02 17:38:50 +02:00
AUTOMATED_OUTREACH_ENABLED=false
# Primary criteria-first AI web research provider. The provider must be an approved
# browsing/search implementation and return URL targets only; the server fetches
# targets with its SSRF-safe crawler. All values are server-side only.
AI_RESEARCH_PROVIDER=
AI_RESEARCH_PROVIDER_MODEL=
AI_RESEARCH_PROVIDER_URL=
AI_RESEARCH_PROVIDER_ALLOWED_HOSTS=
AI_RESEARCH_PROVIDER_API_KEY=
# Deprecated migration-only generic URL search adapter; not used by the AI workflow.
SEARCH_PROVIDER_URL=
SEARCH_PROVIDER_ALLOWED_HOSTS=
SEARCH_PROVIDER_API_KEY=
# Backup operations (host-side, never mounted into the web container).
BACKUP_DIR=/var/backups/prospect-platform
BACKUP_RETENTION=30