This commit is contained in:
Mateusz Gruszczyński
2026-03-13 11:03:13 +01:00
commit 35571df778
132 changed files with 11197 additions and 0 deletions

7
run.py Normal file
View File

@@ -0,0 +1,7 @@
from app import create_app
from config import Config
app = create_app()
if __name__ == '__main__':
app.run(host='0.0.0.0', port=Config.APP_PORT)