Implemented basic models

This commit is contained in:
Jurn Wubben 2025-05-19 22:47:45 +02:00
parent 6bceef1664
commit 3ba6099976
16 changed files with 257 additions and 24 deletions

View file

@ -2,8 +2,7 @@ class Config(object):
DEBUG = False
TESTING = False
SQLALCHEMY_DATABASE_URI = "sqlite:///application.db"
BOOTSTRAP_FONTAWESOME = True
SECRET_KEY = "MINHACHAVESECRETA"
SECRET_KEY = "yessir"
CSRF_ENABLED = True
SQLALCHEMY_TRACK_MODIFICATIONS = True
@ -15,6 +14,5 @@ class Config(object):
class DevelopmentConfig(Config):
DEBUG = True
class TestingConfig(Config):
TESTING = True