pounce/DEPLOY_backend.env
yves.gugger 170eef6d0a
Some checks failed
CI / Frontend Lint & Type Check (push) Has been cancelled
CI / Frontend Build (push) Has been cancelled
CI / Backend Lint (push) Has been cancelled
CI / Backend Tests (push) Has been cancelled
CI / Docker Build (push) Has been cancelled
CI / Security Scan (push) Has been cancelled
Deploy / Build & Push Images (push) Has been cancelled
Deploy / Deploy to Server (push) Has been cancelled
Deploy / Notify (push) Has been cancelled
Add deployment files with environment configurations
2025-12-09 17:39:07 +01:00

67 lines
2.0 KiB
Bash

# =================================
# pounce Backend Configuration
# =================================
# DEPLOY FILE - Copy this to backend/.env on the server
# Database
# SQLite (Development)
DATABASE_URL=sqlite+aiosqlite:///./domainwatch.db
# PostgreSQL (Production)
# DATABASE_URL=postgresql+asyncpg://user:password@localhost:5432/pounce
# Security
SECRET_KEY=62003b69b382cd55f32aba6301a81039e74a84914505d1bfbf254a97a5ccfb36
# JWT Settings
ACCESS_TOKEN_EXPIRE_MINUTES=10080
# CORS Origins (comma-separated)
CORS_ORIGINS=http://localhost:3000,http://127.0.0.1:3000,https://pounce.ch,https://www.pounce.ch
# Scheduler Settings
SCHEDULER_CHECK_INTERVAL_HOURS=24
# OAuth - Google
GOOGLE_CLIENT_ID=865146315769-vi7vcu91d3i7huv8ikjun52jo9ob7spk.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=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
GOOGLE_REDIRECT_URI=https://pounce.ch/api/v1/oauth/google/callback
# OAuth - GitHub
GITHUB_CLIENT_ID=Ov23liBjROk39vYXi3G5
GITHUB_CLIENT_SECRET=fce447621fb9b497b53eef673de15e39b991e21c
GITHUB_REDIRECT_URI=https://pounce.ch/api/v1/oauth/github/callback
# Site URL
SITE_URL=https://pounce.ch
# =================================
# Email (Zoho Mail)
# =================================
SMTP_HOST=smtp.zoho.eu
SMTP_PORT=465
SMTP_USER=hello@pounce.ch
SMTP_PASSWORD=DvYT0MBvSZ0d
SMTP_FROM_EMAIL=hello@pounce.ch
SMTP_FROM_NAME=pounce
SMTP_USE_TLS=false
SMTP_USE_SSL=true
CONTACT_EMAIL=hello@pounce.ch
# =================================
# Stripe Payments
# =================================
STRIPE_SECRET_KEY=sk_test_51ScLbjCtFUamNRpNMtVAN6kIWRauhabZEJz8lmvlfjT5tcntAFsHzvMlXrlD2hE6wQQgsAgLKYzkkYISH7TYprUJ00lIXh6DXb
STRIPE_PUBLISHABLE_KEY=pk_test_51ScLbjCtFUamNRpNpbrN2JnGoCDpR4sq6ny28ao3ircCWcvJjAQi9vclO5bScGMenkmzmZ6FSG2HWWuCOkL2LFjS009lI4QG59
STRIPE_PRICE_TRADER=price_1ScTLKCtFUamNRpNt8s6oVQi
STRIPE_PRICE_TYCOON=price_1ScTLLCtFUamNRpNhQsEIFUx
STRIPE_WEBHOOK_SECRET=whsec_pqWdtvFbQTtBgCfDTgHwgtxxcWl7JbsZ
# Email Verification
REQUIRE_EMAIL_VERIFICATION=false
# Environment
ENVIRONMENT=production
DEBUG=false