int profile set
This commit is contained in:
parent
53e2cf9148
commit
d9fc444e70
1 changed files with 45 additions and 0 deletions
45
env_int.env
Normal file
45
env_int.env
Normal file
|
|
@ -0,0 +1,45 @@
|
||||||
|
# Integration Environment Configuration
|
||||||
|
|
||||||
|
# System Configuration
|
||||||
|
APP_ENV_TYPE = int
|
||||||
|
APP_ENV_LABEL = Integration Instance
|
||||||
|
APP_API_URL = https://gateway-int.poweron-center.net
|
||||||
|
|
||||||
|
# Database Configuration Application
|
||||||
|
DB_APP_HOST=/home/_powerondb
|
||||||
|
DB_APP_DATABASE=app
|
||||||
|
DB_APP_USER=dev_user
|
||||||
|
DB_APP_PASSWORD_SECRET=dev_password
|
||||||
|
|
||||||
|
# Database Configuration Chat
|
||||||
|
DB_CHAT_HOST=/home/_powerondb
|
||||||
|
DB_CHAT_DATABASE=chat
|
||||||
|
DB_CHAT_USER=dev_user
|
||||||
|
DB_CHAT_PASSWORD_SECRET=dev_password
|
||||||
|
|
||||||
|
# Database Configuration Management
|
||||||
|
DB_MANAGEMENT_HOST=/home/_powerondb
|
||||||
|
DB_MANAGEMENT_DATABASE=management
|
||||||
|
DB_MANAGEMENT_USER=dev_user
|
||||||
|
DB_MANAGEMENT_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,https://playground-int.poweron-center.net,http://localhost:5176,https://nyla.poweron-center.net
|
||||||
|
|
||||||
|
# Logging configuration
|
||||||
|
APP_LOGGING_LOG_LEVEL = INFO
|
||||||
|
APP_LOGGING_LOG_FILE = /home/site/wwwroot/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 = https://gateway-int.poweron-center.net/api/msft/auth/callback
|
||||||
|
Service_GOOGLE_REDIRECT_URI = https://gateway-int.poweron-center.net/api/google/auth/callback
|
||||||
Loading…
Reference in a new issue