Skip to content

Commit

Permalink
Update app.py
Browse files Browse the repository at this point in the history
  • Loading branch information
SDzartov committed Nov 27, 2023
1 parent 49cbf6d commit df621b0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions neo_dolfin/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
from sqlalchemy.orm import sessionmaker
import secrets
import boto3 as boto3
import pandas as pd
import time
import pandas as pd
import os
from dotenv import load_dotenv
import ssl
Expand All @@ -21,6 +21,7 @@
from services.basiq_service import BasiqService
from io import StringIO
import pymysql
#

load_dotenv() # Load environment variables from .env
from classes import *
Expand Down Expand Up @@ -439,6 +440,6 @@ def chatbot():
return jsonify(message)
return render_template('chatbot.html')

# Run the Flask app
# Run the Flask appp
if __name__ == '__main__':
app.run(host='0.0.0.0',port=8000, debug=True, threaded=False)

0 comments on commit df621b0

Please sign in to comment.