from chatBot import create_app from threading import Thread from flask import render_template app = create_app() @app.route('/home') def index(): return render_template('layout.html') def run(): app.run(host='0.0.0.0', port=7860, debug=False) run()