This commit is contained in:
piecka 2025-03-21 11:19:20 +01:00
commit 42f1d1012f
18 changed files with 399 additions and 0 deletions

7
run.py Normal file
View file

@ -0,0 +1,7 @@
from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(debug=True)