Changes related to Docker

This commit is contained in:
Scott Idem
2023-01-06 18:25:46 -05:00
parent 6e51cd0305
commit 2a76f9acc1
3 changed files with 15 additions and 7 deletions

View File

@@ -22,6 +22,12 @@ class Settings(BaseSettings):
SQLALCHEMY_DB_URI = 'mysql://'+DB['username']+':'+DB['password']+'@'+DB['server']+'/'+DB['name']
# Redis
REDIS = {}
REDIS['server'] = 'localhost' # 'localhost' 'redis'
REDIS['port'] = '6379'
# Send SMTP Email
SMTP = {}