123123123

This commit is contained in:
2025-04-23 00:22:11 +02:00
parent 9560c8643d
commit 9576899d1a
17 changed files with 113 additions and 66 deletions

14
application/__init__.py Normal file
View File

@@ -0,0 +1,14 @@
from flask import Flask
from flask_migrate import Migrate
from flask_sqlalchemy import SQLAlchemy
# Web Server
app = Flask(__name__)
app.config["SQLALCHEMY_DATABASE_URI"] = "sqlite:///data.sqlite"
app.config["SQLALCHEMY_TRACK_MODIFICATIONS"] = False
app.config["SECRET_KEY"] = "bvjchsygvduycgsyugc"
# ORM
db = SQLAlchemy(app)
migrate = Migrate(app, db)

Binary file not shown.