Spaces:
Runtime error
Runtime error
# 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) | |