CHRIS / CHRIS.py
dzs
turn debug off
7fc47b4
from flask import Flask, render_template
app = Flask(__name__)
app.debug = False
#from color_module import blueprint
#app.register_blueprint(blueprint)
#from exposure_module import blueprint
#app.register_blueprint(blueprint)
from efficiency_module import blueprint
app.register_blueprint(blueprint)
from color2_module import blueprint
app.register_blueprint(blueprint)
from color3_module import blueprint
app.register_blueprint(blueprint)
from exposure2_module import blueprint
app.register_blueprint(blueprint)
from exposure3_module import blueprint
app.register_blueprint(blueprint)
from quantity_module import blueprint
app.register_blueprint(blueprint)
@app.route('/', methods=['GET'])
def app_init():
return render_template('main.html')
if __name__ == '__main__':
app.run()