Initial commit

This commit is contained in:
2025-11-11 01:48:45 +01:00
commit 06d0e1c426
14 changed files with 568 additions and 0 deletions

7
run.py Executable file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env python3
from backend import create_app
app = create_app()
if __name__ == "__main__":
app.run(debug=True)