16 lines
502 B
Bash
16 lines
502 B
Bash
# Environment variables for the MerchantsOfHope application
|
|
|
|
# General settings
|
|
DEBUG=False
|
|
SECRET_KEY=replace-this-with-a-secure-random-key-in-production
|
|
|
|
# Database settings
|
|
DATABASE_URL=postgresql://user:password@db:5432/merchants_of_hope
|
|
|
|
# OIDC settings (example values, replace with actual values)
|
|
OIDC_ISSUER=https://your-oidc-provider.com
|
|
OIDC_CLIENT_ID=your-client-id
|
|
OIDC_CLIENT_SECRET=your-client-secret
|
|
OIDC_REDIRECT_URI=http://localhost:21000/auth/oidc-callback
|
|
|
|
# Other settings as needed |