File size: 260 Bytes
23d152f
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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()