fixed some security risks

This commit is contained in:
2026-02-21 10:36:53 -05:00
parent b62df442b5
commit c2fe59da0d
8 changed files with 170 additions and 250 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()