Example #1
0
""" Run file """
from factory import app

app.run(debug=True)
Example #2
0
from flask import render_template
from factory import app

if __name__ == "__main__":
    app.run(host="0.0.0.0", debug=True)
Example #3
0
from factory import app

if __name__ == "__main__":
    app.run(host="0.0.0.0", port=5000)
Example #4
0
#!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)
Example #5
0
from factory import app

if __name__ == "__main__":
    app.run(host="0.0.0.0", debug=True, port=5000)