semabox-mms / app.py
Tri4's picture
Create app.py
4564cfc verified
raw
history blame
284 Bytes
from flask import Flask, request, jsonify, render_template
import os
app = Flask(__name__)
@app.route("/")
def hello():
return render_template('index.html')
if __name__ == '__main__':
print("Lets test voice recording\n", flush=True)
app.run(host="0.0.0.0", port=5000)