Initial: Flask app with Nubes design, org display

This commit is contained in:
2026-07-23 09:39:47 +04:00
commit e752905e02
16 changed files with 401 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
"""Точка входа."""
from app import create_app
app = create_app()
if __name__ == "__main__":
app.run(host="0.0.0.0", port=5000)