11 lines
394 B
Text
11 lines
394 B
Text
# Environment variables for the backend
|
|
# For local dev: use direnv with the root .envrc file (recommended)
|
|
# For production: set these in your deployment environment
|
|
|
|
# Required: Secret key for JWT token signing
|
|
# Generate with: python -c "import secrets; print(secrets.token_urlsafe(32))"
|
|
SECRET_KEY=
|
|
|
|
# Database URL
|
|
DATABASE_URL=postgresql+asyncpg://postgres:postgres@localhost:5432/arbret
|
|
|