""" Run file """ from factory import app app.run(debug=True)
from flask import render_template from factory import app if __name__ == "__main__": app.run(host="0.0.0.0", debug=True)
from factory import app if __name__ == "__main__": app.run(host="0.0.0.0", port=5000)
#!flask/bin/python from factory import app #create application #app = create_app('BaseConfigeration') from app.views import home,staff_blue,task_blue,result app.register_blueprint(home) app.register_blueprint(staff_blue) app.register_blueprint(task_blue) app.register_blueprint(result) app.run(debug=True)
from factory import app if __name__ == "__main__": app.run(host="0.0.0.0", debug=True, port=5000)