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

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