From f2edde5ba5acd1f570289c1c682932ca32781e2b Mon Sep 17 00:00:00 2001 From: Florian du Garage Num Date: Thu, 4 Jan 2024 15:12:55 +0100 Subject: [PATCH] serve with simple python http server --- Procfile | 2 +- mkdocs.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Procfile b/Procfile index fb71e0c8..8c30d3e9 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: mkdocs build && gunicorn -w 4 -b 0.0.0.0:5000 'whitenoise.run:WhiteNoiseApplication("public")' +web: mkdocs build && python -m http.server --directory public 5000 diff --git a/mkdocs.yml b/mkdocs.yml index 44f4ebbb..a58c653f 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,5 +1,5 @@ site_name: Garage Num Doc -site_url: https://garagenum.gitlab.io/doc +site_url: https://docs.legaragenumerique.eu site_dir: public theme: name: material