updraft-forcing / run.py
snesbitt's picture
Initial commit — UpdraftForcing Dash app
87602e0
Raw
History Blame Contribute Delete
187 Bytes
from updraft_forcing.app import create_app
app = create_app()
server = app.server # gunicorn entry point
if __name__ == "__main__":
app.run(host="0.0.0.0", port=7860, debug=False)