Clean up of new Aether configs
This commit is contained in:
@@ -9,18 +9,19 @@ class Settings(BaseSettings):
|
|||||||
AETHER_CFG['api_id'] = 0
|
AETHER_CFG['api_id'] = 0
|
||||||
|
|
||||||
APP_NAME: str = "Aether API (FastAPI)"
|
APP_NAME: str = "Aether API (FastAPI)"
|
||||||
ADMIN_EMAIL: EmailStr = 'Aether.Admin@oneskyit.com'
|
SUPER_EMAIL: EmailStr = 'Aether.Super@oneskyit.com'
|
||||||
|
|
||||||
|
|
||||||
# Database Connection
|
# Database Connection
|
||||||
DB = {}
|
DB = {}
|
||||||
DB['server'] = 'linode.oneskyit.com' # vpn-linode linode.oneskyit.local
|
DB['server'] = 'db.oneskyit.com'
|
||||||
DB['port'] = '3306' # default = 3306
|
DB['port'] = '3306' # default = 3306
|
||||||
DB['name'] = 'aether_dev' #onesky_ams_dev
|
DB['name'] = 'aether_default'
|
||||||
DB['username'] = ''
|
DB['username'] = ''
|
||||||
DB['password'] = ''
|
DB['password'] = ''
|
||||||
SQLALCHEMY_DB_URI = 'mysql://'+DB['username']+':'+DB['password']+'@'+DB['server']+'/'+DB['name']
|
SQLALCHEMY_DB_URI = 'mysql://'+DB['username']+':'+DB['password']+'@'+DB['server']+'/'+DB['name']
|
||||||
|
|
||||||
|
|
||||||
# Send SMTP Email
|
# Send SMTP Email
|
||||||
SMTP = {}
|
SMTP = {}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user