Client billing code push

This commit is contained in:
Pooja Fulari
2026-04-15 10:32:46 +05:30
commit 92670665c3
599 changed files with 9348 additions and 0 deletions

10
run.py Normal file
View File

@@ -0,0 +1,10 @@
from app import create_app, db
app = create_app()
app.config['MAX_CONTENT_LENGTH'] = 64 * 1024 * 1024
if __name__ == '__main__':
with app.app_context():
db.create_all()
app.run(host='0.0.0.0', port=5002, debug=True)