Spaces:
Sleeping
Sleeping
File size: 1,324 Bytes
91eaff6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Preview the `MkDocs` build of the online documentation.
"""
from pathlib import PurePosixPath
import os
from flask import Flask, redirect, send_from_directory, url_for # pylint: disable=E0401
DOCS_ROUTE = "/docs/"
DOCS_FILES = "../site"
DOCS_PORT = 8000
APP = Flask(__name__, static_folder=DOCS_FILES, template_folder=DOCS_FILES)
APP.config["DEBUG"] = False
APP.config["MAX_CONTENT_LENGTH"] = 52428800
APP.config["SECRET_KEY"] = "Technically, I remain uncommitted."
APP.config["SEND_FILE_MAX_AGE_DEFAULT"] = 3000
@APP.route(DOCS_ROUTE, methods=["GET"])
@APP.route(DOCS_ROUTE + "<path:path>", methods=["GET"], defaults={"path": None})
@APP.route(DOCS_ROUTE + "<path:path>", methods=["GET"])
def static_proxy (path=""):
"""static route for an asset"""
if not path:
suffix = ""
else:
suffix = PurePosixPath(path).suffix
if suffix not in [".css", ".js", ".map", ".png", ".svg", ".xml"]:
path = os.path.join(path, "index.html")
return send_from_directory(DOCS_FILES, path)
@APP.route("/index.html")
@APP.route("/home/")
@APP.route("/")
def home_redirects ():
"""redirect for home page"""
return redirect(url_for("static_proxy"))
if __name__ == "__main__":
APP.run(host="0.0.0.0", port=DOCS_PORT, debug=True)
|