Added main backend components

This commit is contained in:
2025-09-23 00:45:03 +02:00
parent 4d857fc787
commit a9596734e4
3 changed files with 394 additions and 0 deletions

5
wsgi.py Normal file
View File

@@ -0,0 +1,5 @@
from server import app, reload_jsons
if __name__ == "__main__":
reload_jsons(True)
app.run()