Spaces:
Sleeping
Sleeping
| from flask import Flask, render_template, send_from_directory, jsonify | |
| import os | |
| app = Flask(__name__) | |
| def index(): | |
| return render_template('index.html') | |
| def health(): | |
| return jsonify({"status": "healthy"}), 200 | |
| if __name__ == '__main__': | |
| app.run(host='0.0.0.0', port=7860) | |