Spaces:
Runtime error
Runtime error
| Credily Backend Environment Configuration | |
| Copy this file to .env and fill in your values | |
| # Database Configuration | |
| For development: Leave unset to use SQLite (default) | |
| For production: Set to your PostgreSQL connection string | |
| DATABASE_URL=postgresql://user:password@host:port/database | |
| # Production PostgreSQL with PgBouncer (Supabase example) | |
| DATABASE_URL=postgresql://postgres.xxxxx:password@aws-1-eu-central-2.pooler.supabase.com:6543/postgres?pgbouncer=true | |
| # API Configuration (optional) | |
| HOST=0.0.0.0 | |
| PORT=8000 | |
| # CORS Origins (comma-separated for production) | |
| CORS_ORIGINS=https://your-frontend.com,https://api.your-domain.com | |