This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
jos/app/__main__.py

15 lines
374 B
Python

"""Main entrypoint for the program."""
from quart import Quart
app = Quart("jos", static_folder="web/dist", static_url_path="/")
@app.route("/", methods=["GET"], defaults={"path": ""})
@app.route("/<path:path>", methods=["GET"])
async def frontend(path):
"""Serves the Vue.js frontend."""
return await app.send_static_file("index.html")
app.run(host="0.0.0.0")