38 lines
827 B
Plaintext
38 lines
827 B
Plaintext
# Environment variables for MerchantsOfHope.org
|
|
APP_NAME="MerchantsOfHope Recruiting Platform"
|
|
APP_ENV="development"
|
|
APP_DEBUG=true
|
|
APP_URL="http://localhost:20001"
|
|
|
|
# Database configuration (will use PostgreSQL)
|
|
DB_HOST=postgres
|
|
DB_PORT=5432
|
|
DB_NAME=moh_db
|
|
DB_USER=moh_user
|
|
DB_PASSWORD=moh_password
|
|
|
|
# OIDC Configuration
|
|
OIDC_PROVIDER_URL=""
|
|
OIDC_CLIENT_ID=""
|
|
OIDC_CLIENT_SECRET=""
|
|
OIDC_REDIRECT_URI="${APP_URL}/auth/callback"
|
|
|
|
# Social Media Login Configuration
|
|
GOOGLE_CLIENT_ID=""
|
|
GOOGLE_CLIENT_SECRET=""
|
|
FACEBOOK_CLIENT_ID=""
|
|
FACEBOOK_CLIENT_SECRET=""
|
|
|
|
# Multi-tenant configuration
|
|
MULTI_TENANT_ENABLED=true
|
|
|
|
# Security
|
|
JWT_SECRET="change_this_in_production"
|
|
SESSION_LIFETIME=3600
|
|
|
|
# Mail configuration
|
|
MAIL_HOST=smtp.example.com
|
|
MAIL_PORT=587
|
|
MAIL_USERNAME=no-reply@merchantsOfHope.org
|
|
MAIL_PASSWORD=""
|
|
MAIL_ENCRYPTION=tls |