6 lines
166 B
Python
6 lines
166 B
Python
from butterrobot.app import app
|
|
from butterrobot.config import DEBUG
|
|
|
|
# Only used for local development!
|
|
# python -m butterrobot
|
|
app.run(debug=DEBUG, host="0.0.0.0")
|