22 أسطر
444 B
Python
22 أسطر
444 B
Python
from flask import Flask, jsonify, send_from_directory
|
|
from flask_cors import CORS
|
|
import os
|
|
|
|
app = Flask(__name__)
|
|
CORS(app)
|
|
|
|
@app.route('/')
|
|
def index():
|
|
return send_from_directory('.', 'dashboard.html')
|
|
|
|
@app.route('/<path:path>')
|
|
def static_files(path):
|
|
return send_from_directory('.', path)
|
|
|
|
@app.route('/health')
|
|
def health():
|
|
return jsonify({"status": "ok"})
|
|
|
|
if __name__ == '__main__':
|
|
app.run(host='0.0.0.0', port=8080)
|