Finalizing Docker Compose files and configuration options
This commit is contained in:
58
.env.default
Normal file
58
.env.default
Normal file
@@ -0,0 +1,58 @@
|
||||
# One Sky IT's Aether Framework and System
|
||||
|
||||
OSIT_ENV=development
|
||||
# OSIT_ENV=production
|
||||
# OSIT_ENV=testing
|
||||
|
||||
# Aether general shared config options
|
||||
# For general shared config options like API access and use, database access and use, Redis, and SMTP
|
||||
# home development, live testing, live production, onsite development, onsite testing, onsite production???
|
||||
AE_CFG_ID=0
|
||||
|
||||
## Aether API access and use
|
||||
AE_API_PROTOCOL=https
|
||||
AE_API_SERVER=dev-api.oneskyit.com
|
||||
AE_API_PORT=443
|
||||
AE_API_PATH=
|
||||
AE_API_SECRET_KEY=the-secret-api-key
|
||||
|
||||
## Aether DB access and use
|
||||
AE_DB_SERVER=linode.oneskyit.com
|
||||
AE_DB_PORT=3306
|
||||
AE_DB_NAME=aether_dev
|
||||
# AE_DB_USERNAME=osit_aether
|
||||
AE_DB_USERNAME=onesky_aether
|
||||
AE_DB_PASSWORD="the password with $$ escape"
|
||||
|
||||
## Aether Redis access and use
|
||||
AE_REDIS_SERVER=redis
|
||||
AE_REDIS_PORT=6379
|
||||
|
||||
## Aether SMTP access and use
|
||||
AE_SMTP_SERVER=linode.oneskyit.com
|
||||
AE_SMTP_PORT=465
|
||||
AE_SMTP_USERNAME=send_mail
|
||||
# AE_SMTP_PASSWORD="not currently used"
|
||||
|
||||
|
||||
# Aether API specific config options (FastAPI)
|
||||
# AE_API_CFG_ID=0 # NOT CURRENTLY NEED OR USED
|
||||
AE_API_ENV=development
|
||||
AE_API_DIR=/srv/aether_api
|
||||
AE_API_LOG_PATH="/logs/aether_api.log"
|
||||
AE_API_WORKERS=1
|
||||
AE_API_THREADS=1
|
||||
AE_API_RELOAD=False
|
||||
|
||||
|
||||
# Aether app specific config (Flask with Svelte)
|
||||
AE_APP_CFG_ID=0
|
||||
AE_APP_ENV=development
|
||||
AE_APP_UX_MODE=default
|
||||
# AE_APP_UX_MODE=onsite
|
||||
# AE_APP_UX_MODE=native
|
||||
AE_APP_DIR=/srv/aether_app
|
||||
AE_APP_LOG_PATH="/logs/aether_app.log"
|
||||
AE_APP_WORKERS=1
|
||||
AE_APP_THREADS=1
|
||||
AE_APP_RELOAD=True
|
||||
Reference in New Issue
Block a user