first commit

This commit is contained in:
CHIEFSOFT\ameye
2025-05-03 22:16:10 -04:00
commit 108378a31e
33 changed files with 1624 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import os
basedir = os.path.abspath(os.path.dirname(__file__))
class Config(object):
SQLALCHEMY_DATABASE_URI = os.getenv("DATABASE_URL", "sqlite://")
SQLALCHEMY_TRACK_MODIFICATIONS = False
STATIC_FOLDER = f"{os.getenv('APP_FOLDER')}/project/static"
MEDIA_FOLDER = f"{os.getenv('APP_FOLDER')}/project/media"