mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-20 09:51:13 -05:00
39 lines
924 B
Plaintext
39 lines
924 B
Plaintext
# Django Settings
|
|
DEBUG=True
|
|
SECRET_KEY=your-secret-key-here-change-in-production
|
|
ALLOWED_HOSTS=localhost,127.0.0.1
|
|
|
|
# Database
|
|
DATABASE_URL=postgresql://user:password@localhost:5432/thrillwiki
|
|
|
|
# Redis
|
|
REDIS_URL=redis://localhost:6379/0
|
|
|
|
# Celery
|
|
CELERY_BROKER_URL=redis://localhost:6379/0
|
|
CELERY_RESULT_BACKEND=redis://localhost:6379/1
|
|
|
|
# CloudFlare Images
|
|
CLOUDFLARE_ACCOUNT_ID=your-account-id
|
|
CLOUDFLARE_IMAGE_TOKEN=your-token
|
|
CLOUDFLARE_IMAGE_HASH=your-hash
|
|
# CloudFlare Images base URL - Primary: cdn.thrillwiki.com (simpler URL structure)
|
|
# Format: {base_url}/images/{image-id}/{variant-id}
|
|
CLOUDFLARE_IMAGE_BASE_URL=https://cdn.thrillwiki.com
|
|
|
|
# Novu
|
|
NOVU_API_KEY=your-novu-api-key
|
|
NOVU_API_URL=https://api.novu.co
|
|
|
|
# Sentry
|
|
SENTRY_DSN=your-sentry-dsn
|
|
|
|
# CORS
|
|
CORS_ALLOWED_ORIGINS=http://localhost:5173,http://localhost:3000
|
|
|
|
# OAuth
|
|
GOOGLE_CLIENT_ID=
|
|
GOOGLE_CLIENT_SECRET=
|
|
DISCORD_CLIENT_ID=
|
|
DISCORD_CLIENT_SECRET=
|