26 lines
614 B
Python
26 lines
614 B
Python
from flask import Flask, render_template, jsonify
|
|
|
|
|
|
class SayApp:
|
|
def __init__(self):
|
|
self.app = Flask(__name__, template_folder="templates", static_folder="static")
|
|
self.add_routes()
|
|
|
|
def add_routes(self):
|
|
self.app.add_url_rule("/", "index", self.index)
|
|
self.app.add_url_rule("/healthz", "healthz", self.health)
|
|
|
|
def index(self):
|
|
return render_template("index.html")
|
|
|
|
def healthz(self):
|
|
return jsonify({"status": "ok"})
|
|
|
|
def run(self):
|
|
self.app.run(host="0.0.0.0", port=5000, debug=True)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
SayApp().run()
|
|
|