mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
8 lines
204 B
Python
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")
|