vishalsh13's picture
guincorn added
db8326c
raw
history blame contribute delete
227 Bytes
# 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)