Initial commit

This commit is contained in:
iulian 2025-12-26 00:52:56 +00:00
commit 983cee0320
322 changed files with 57174 additions and 0 deletions

8
run.py Normal file
View file

@ -0,0 +1,8 @@
from app import create_app
import os
app = create_app()
if __name__ == '__main__':
port = int(os.environ.get('PORT', 5103))
app.run(host='0.0.0.0', port=port, debug=False)