File size: 227 Bytes
db8326c
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
# wsgi.py
from app import create_app

# Create the Flask app
obj_app = create_app()

# If you still want to run it for quick testing, you can optionally do:
if __name__ == "__main__":
    obj_app.run(host="0.0.0.0", port=7860)