Spaces:
Running
Running
File size: 237 Bytes
c001f24 |
1 2 3 4 5 6 7 8 |
from dotenv import load_dotenv
load_dotenv() # Load environment variables from .env file
from app import app, socketio
if __name__ == '__main__':
socketio.run(app, debug=True, port=1302, host='0.0.0.0',allow_unsafe_werkzeug=True)
|