Exemplo n.º 1
0
from application.views import app
from application.authentication.auth import auth

app.register_blueprint(auth)
app.run(debug=True, host="0.0.0.0", port=5000)
Exemplo n.º 2
0
from application import initialize
from application.views import app

if __name__ == '__main__':
    app.run()
Exemplo n.º 3
0
from application.views import app
import os

app.run(debug=True, host="0.0.0.0", port=int(os.getenv("PORT", "5000")))
Exemplo n.º 4
0
"""This script starts the application"""
from application.views import app

if __name__ == '__main__':
    app.run(debug=True)
Exemplo n.º 5
0
# This script starts the app
from application.views import app

if  __name__ == "__main__":
    app.run(debug="True")