Files
IT_Ticket_System/run.py
T
2026-03-25 11:37:46 -04:00

8 lines
202 B
Python

import os
from app import create_app, socketio
app = create_app(os.environ.get('FLASK_ENV', 'production'))
if __name__ == '__main__':
socketio.run(app, host='0.0.0.0', port=5000, debug=app.debug)