mirror of
https://github.com/thecyberlearn/quantum-ai-v3.git
synced 2026-08-18 09:52:58 +00:00
25 lines
695 B
Plaintext
25 lines
695 B
Plaintext
SECRET_KEY=your-secret-key-here
|
|
DEBUG=False
|
|
ALLOWED_HOSTS=yourdomain.com,www.yourdomain.com
|
|
CSRF_TRUSTED_ORIGINS=https://yourdomain.com,https://www.yourdomain.com
|
|
|
|
# Database
|
|
DB_NAME=netcop_hub
|
|
DB_USER=netcop_user
|
|
DB_PASSWORD=your-db-password
|
|
DB_HOST=localhost
|
|
DB_PORT=5432
|
|
|
|
# Stripe
|
|
STRIPE_SECRET_KEY=sk_live_your_stripe_secret_key
|
|
STRIPE_WEBHOOK_SECRET=whsec_your_webhook_secret
|
|
|
|
# AI Assistant Webhooks
|
|
N8N_WEBHOOK_DATA_ANALYZER=your_n8n_webhook_url
|
|
N8N_WEBHOOK_FIVE_WHYS=your_n8n_webhook_url
|
|
N8N_WEBHOOK_JOB_POSTING=your_n8n_webhook_url
|
|
N8N_WEBHOOK_FAQ_GENERATOR=your_n8n_webhook_url
|
|
N8N_WEBHOOK_SOCIAL_ADS=your_n8n_webhook_url
|
|
|
|
# OpenWeather API
|
|
OPENWEATHER_API_KEY=your_openweather_api_key |