diff --git a/application.py b/application.py new file mode 100644 index 0000000..580abeb --- /dev/null +++ b/application.py @@ -0,0 +1,17 @@ +from flask import Flask, render_template, request +from flask_bootstrap import Bootstrap + + +application = Flask(__name__) +Bootstrap(application) + + +@application.route('/') +@application.route('/index.html') +def home(): + TITLE = 'Object detection' + return render_template('index.html', TITLE=TITLE) + + +if __name__ == '__main__': + application.run(debug=True)