Files
LT_Janitorial_Quality_Control/wsgi.py
T
2026-02-21 10:36:53 -05:00

8 lines
137 B
Python

from app import create_app
import os
app = create_app(os.getenv('FLASK_ENV') or 'production')
if __name__ == "__main__":
app.run()