69 lines
No EOL
2 KiB
Bash
69 lines
No EOL
2 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 for Application
|
|
# JSON File Storage (current)
|
|
# DB_APP_HOST=D:/Temp/_powerondb
|
|
# DB_APP_DATABASE=app
|
|
# DB_APP_USER=dev_user
|
|
# DB_APP_PASSWORD_SECRET=dev_password
|
|
|
|
# PostgreSQL Storage (new)
|
|
DB_APP_HOST=localhost
|
|
DB_APP_DATABASE=poweron_app_dev
|
|
DB_APP_USER=poweron_dev
|
|
DB_APP_PASSWORD_SECRET=dev_password
|
|
DB_APP_PORT=5432
|
|
|
|
# Database Configuration Chat
|
|
# JSON File Storage (current)
|
|
# DB_CHAT_HOST=D:/Temp/_powerondb
|
|
# DB_CHAT_DATABASE=chat
|
|
# DB_CHAT_USER=dev_user
|
|
# DB_CHAT_PASSWORD_SECRET=dev_password
|
|
|
|
# PostgreSQL Storage (new)
|
|
DB_CHAT_HOST=localhost
|
|
DB_CHAT_DATABASE=poweron_chat_dev
|
|
DB_CHAT_USER=poweron_dev
|
|
DB_CHAT_PASSWORD_SECRET=dev_password
|
|
DB_CHAT_PORT=5432
|
|
|
|
# Database Configuration Management
|
|
# JSON File Storage (current)
|
|
# DB_MANAGEMENT_HOST=D:/Temp/_powerondb
|
|
# DB_MANAGEMENT_DATABASE=management
|
|
# DB_MANAGEMENT_USER=dev_user
|
|
# DB_MANAGEMENT_PASSWORD_SECRET=dev_password
|
|
|
|
# PostgreSQL Storage (new)
|
|
DB_MANAGEMENT_HOST=localhost
|
|
DB_MANAGEMENT_DATABASE=poweron_management_dev
|
|
DB_MANAGEMENT_USER=poweron_dev
|
|
DB_MANAGEMENT_PASSWORD_SECRET=dev_password
|
|
DB_MANAGEMENT_PORT=5432
|
|
|
|
# Security Configuration
|
|
APP_JWT_SECRET_SECRET=rotated_jwt_secret_2025_09_17_f8a3b6c2-7d4e-45b6-9a1f-3c0b9a1d2e7f
|
|
APP_TOKEN_EXPIRY=300
|
|
|
|
# CORS Configuration
|
|
APP_ALLOWED_ORIGINS=http://localhost:8080,https://playground.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 |