Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
File size: 1,126 Bytes
d543fc1 4cab191 | 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 30 31 32 33 34 35 36 37 38 39 | # ============================================================================
# SentinelScan (WSS) — Environment Variables
# Copy this file to .env and fill in your actual values.
# ============================================================================
# --- Flask ---
FLASK_ENV=development
JWT_SECRET=your-super-secret-jwt-key-here
# --- Database (GCP Cloud SQL — PostgreSQL) ---
DATABASE_URL=postgresql://user:password@host:5432/dbname
# --- Redis (Celery broker) ---
CELERY_BROKER_URL=redis://localhost:6379/0
CELERY_RESULT_BACKEND=redis://localhost:6379/0
# --- Firebase Cloud Storage ---
FIREBASE_CREDENTIALS=serviceAccountKey.json
FIREBASE_STORAGE_BUCKET=your-project-id.appspot.com
# --- Local uploads (fallback when Firebase is not configured) ---
# UPLOAD_FOLDER=./uploads/logos
# --- Email (Resend) ---
RESEND_API_KEY=re_your_resend_api_key
# --- Stripe (payments) ---
STRIPE_SECRET_KEY=sk_live_your_stripe_key
# --- External URLs ---
FRONTEND_URL=http://localhost:3000
# --- Scanner tuning ---
SCANNER_RATE_LIMIT=60
SCANNER_RATE_WINDOW=60
# --- Superadmin ---
SUPERADMIN_PASSWORD=larshield2025
|