did some formatting and cleaning

This commit is contained in:
2023-09-20 01:25:33 +03:30
parent abf5ab25f1
commit 41fdbcd1f2
2 changed files with 107 additions and 26 deletions

View File

@@ -1 +1,5 @@
SQLALCHEMY_DATABASE_URI = 'mysql+mariadb://your_username:your_password@your_database_host/scenesense_db'
import os
class Config:
# Use the environment variable for the database URI
SQLALCHEMY_DATABASE_URI = os.environ.get("SQLALCHEMY_DATABASE_URI")