From 68befa5f6b5bf9fa436864ec19a0365ece0873dd Mon Sep 17 00:00:00 2001 From: Florian du Garage Num Date: Thu, 4 Jan 2024 16:07:54 +0100 Subject: [PATCH] mkdir public in Procfile --- Procfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Procfile b/Procfile index 35f5538d..f446a494 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: mkdocs serve -a localhost:5000 +web: mkdir public && mkdocs build && python -m http.server --directory public 5000