First commit

This commit is contained in:
2026-06-26 09:04:34 -04:00
commit 77678ed724
166 changed files with 34842 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
from app import create_app
import os
app = create_app(os.getenv('FLASK_ENV') or 'production')
if __name__ == "__main__":
app.run()