initial commit

This commit is contained in:
2025-06-29 18:17:04 +03:00
commit 6c731b04d3
11 changed files with 323 additions and 0 deletions

10
app/run.py Normal file
View File

@ -0,0 +1,10 @@
from app import create_app
import os
app = create_app()
if __name__ == "__main__":
app.run(
host = "127.0.0.1",
port = 8080
)