claim_detection / app.py
JasonLiao's picture
Create app.py
8f52e0c
raw
history blame
267 Bytes
import flask
import os
from dotenv import load_dotenv
load_dotenv()
app = flask.Flask(__name__, template_folder="static")
@app.route("/")
def index():
return flask.render_template("index.html")
if __name__ == "__main__":
app.run(host="0.0.0.0", port=7860)