hello-hermes / app.py
cntalk's picture
Upload folder using huggingface_hub
a823ce6 verified
raw
history blame contribute delete
241 Bytes
"""Hermes House - Static showcase page"""
from flask import Flask, send_file
import os
app = Flask(__name__)
@app.route('/')
def index():
return send_file('index.html')
if __name__ == '__main__':
app.run(host='0.0.0.0', port=7860)