rozbicie na moduły, poprawki i komendy cli

This commit is contained in:
Mateusz Gruszczyński
2026-03-20 10:43:40 +01:00
parent c5295fa49c
commit bbfb3e0887
48 changed files with 2125 additions and 1676 deletions

View File

@@ -1,11 +1,10 @@
import os
from app import app, db, create_admin_account
from waitress import serve
from app import app, init_database_with_retry
if __name__ == '__main__':
with app.app_context():
db.create_all()
create_admin_account()
init_database_with_retry(app, raise_on_failure=False)
port = int(os.environ.get("APP_PORT", 8080))
serve(app, host="0.0.0.0", port=port)
serve(app, host="0.0.0.0", port=port)