22 lines
659 B
Text
22 lines
659 B
Text
# Agnes AI Data Analyst - Environment Variables
|
|
# Copy to .env: cp config/.env.template .env
|
|
# .env is gitignored - NEVER commit it.
|
|
|
|
# Required
|
|
JWT_SECRET_KEY= # python -c "import secrets; print(secrets.token_hex(32))"
|
|
|
|
# Google OAuth (optional — needed for Google login)
|
|
# GOOGLE_CLIENT_ID=
|
|
# GOOGLE_CLIENT_SECRET=
|
|
|
|
# Keboola adapter (optional — skip if using CSV/sample data)
|
|
# KEBOOLA_STORAGE_TOKEN=
|
|
# KEBOOLA_STACK_URL=https://connection.keboola.com
|
|
|
|
# Bootstrap admin (optional — used on first docker compose up)
|
|
# SEED_ADMIN_EMAIL=admin@example.com
|
|
|
|
# Optional services
|
|
# TELEGRAM_BOT_TOKEN=
|
|
# JIRA_WEBHOOK_SECRET=
|
|
# ANTHROPIC_API_KEY=
|