Spaces:
Sleeping
Sleeping
| """Hermes House - Static showcase page""" | |
| from flask import Flask, send_file | |
| import os | |
| app = Flask(__name__) | |
| def index(): | |
| return send_file('index.html') | |
| if __name__ == '__main__': | |
| app.run(host='0.0.0.0', port=7860) |