init commit

This commit is contained in:
Cipher Vance 2025-07-20 00:28:59 -05:00
parent 947db1a737
commit 338a24ad4b
15 changed files with 7761 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(debug=True)