WIP registration platform + discord bot

This commit is contained in:
2026-01-03 20:37:22 +01:00
parent 073087e644
commit 5afac8f90d
13 changed files with 648 additions and 0 deletions

6
run.py Normal file
View File

@@ -0,0 +1,6 @@
from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(host='0.0.0.0', debug=True)