Model/etl/customers/stonewater/map_app/wsgi.py
2024-06-28 20:34:55 +01:00

8 lines
204 B
Python

# Callbacks must be imported to run the app
import callbacks # NOQA
from server import app
application = app.server
if __name__ == "__main__":
app.run_server(port=8080, debug=True, host="0.0.0.0")