45 lines
No EOL
1.4 KiB
Bash
45 lines
No EOL
1.4 KiB
Bash
# Development Environment Configuration
|
|
|
|
# System Configuration
|
|
APP_ENV_TYPE = dev
|
|
APP_ENV_LABEL = Development Instance Patrick
|
|
APP_API_URL = http://localhost:8000
|
|
|
|
# Database Configuration Gateway
|
|
DB_GATEWAY_HOST=D:/Temp/_powerondb
|
|
DB_GATEWAY_DATABASE=gateway
|
|
DB_GATEWAY_USER=dev_user
|
|
DB_GATEWAY_PASSWORD_SECRET=dev_password
|
|
|
|
# Database Configuration LucyDOM
|
|
DB_LUCYDOM_HOST=D:/Temp/_powerondb
|
|
DB_LUCYDOM_DATABASE=lucydom
|
|
DB_LUCYDOM_USER=dev_user
|
|
DB_LUCYDOM_PASSWORD_SECRET=dev_password
|
|
|
|
# Database Configuration MSFT
|
|
DB_MSFT_HOST=D:/Temp/_powerondb
|
|
DB_MSFT_DATABASE=msft
|
|
DB_MSFT_USER=dev_user
|
|
DB_MSFT_PASSWORD_SECRET=dev_password
|
|
|
|
# Security Configuration
|
|
APP_JWT_SECRET_SECRET=dev_jwt_secret_token
|
|
APP_TOKEN_EXPIRY=300
|
|
|
|
# CORS Configuration
|
|
APP_ALLOWED_ORIGINS=http://localhost:8080,https://playground.poweron-center.net,http://localhost:5176,https://nyla.poweron-center.net
|
|
|
|
# Logging configuration
|
|
APP_LOGGING_LOG_LEVEL = DEBUG
|
|
APP_LOGGING_LOG_FILE = poweron.log
|
|
APP_LOGGING_FORMAT = %(asctime)s - %(levelname)s - %(name)s - %(message)s
|
|
APP_LOGGING_DATE_FORMAT = %Y-%m-%d %H:%M:%S
|
|
APP_LOGGING_CONSOLE_ENABLED = True
|
|
APP_LOGGING_FILE_ENABLED = True
|
|
APP_LOGGING_ROTATION_SIZE = 10485760
|
|
APP_LOGGING_BACKUP_COUNT = 5
|
|
|
|
# Service Redirects
|
|
Service_MSFT_REDIRECT_URI = http://localhost:8000/api/msft/auth/callback
|
|
Service_GOOGLE_REDIRECT_URI = http://localhost:8000/api/google/auth/callback |