Example #1
0
from restaurant import app
app.run(host='0.0.0.0', debug=True, port=5000)
Example #2
0
from restaurant import app
app.secret_key = 'not_very_secret'
app.run(host='0.0.0.0', port=5000, debug=True)
Example #3
0
from restaurant import app

if __name__ == "__main__":
    app.run(debug=True)
Example #4
0
from restaurant import app
app.debug = True
app.run(host='0.0.0.0', port=5000)