app.py 305 B

1234567891011121314151617
  1. from flask import Flask, render_template
  2. app = Flask(__name__)
  3. @app.route("/")
  4. def index():
  5. return render_template("home.html")
  6. @app.route("/health")
  7. def health():
  8. return "Health check passed!"
  9. @app.route("/api/questions/")
  10. def questions_index():
  11. return "Hello, World!"
  12. app.run(port=5000)