main.py 686 B

123456789101112131415161718192021222324252627
  1. from flask import Flask, render_template
  2. from webservice import api, file_io
  3. import os
  4. app = Flask(__name__, template_folder="static")
  5. app.register_blueprint(api.bp, url_prefix="/api")
  6. app.register_blueprint(file_io.bp)
  7. @app.route("/")
  8. @app.route("/login", methods=["GET"])
  9. @app.route("/select", methods=["GET"])
  10. @app.route("/static/login")
  11. @app.route("/static/select")
  12. def home():
  13. return render_template("index.html")
  14. @app.route("/static/planner/<year>/<version>/<timestamp>")
  15. def planner(year, version, timestamp):
  16. return render_template("index.html")
  17. if __name__ == "__main__":
  18. app.secret_key = os.urandom(24)
  19. app.run(host="0.0.0.0", port="8084", debug=True)