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)
from application import initialize from application.views import app if __name__ == '__main__': app.run()
from application.views import app import os app.run(debug=True, host="0.0.0.0", port=int(os.getenv("PORT", "5000")))
"""This script starts the application""" from application.views import app if __name__ == '__main__': app.run(debug=True)
# This script starts the app from application.views import app if __name__ == "__main__": app.run(debug="True")