From 7fec6ae21cbefd7f7c99f27f8c20ba70b82fbfc3 Mon Sep 17 00:00:00 2001 From: Cian Hughes Date: Fri, 10 Nov 2023 12:55:00 +0000 Subject: [PATCH] Attempt at making deployment via netlify possible --- netlify.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 netlify.toml diff --git a/netlify.toml b/netlify.toml new file mode 100644 index 0000000..053ae6f --- /dev/null +++ b/netlify.toml @@ -0,0 +1,10 @@ +[build] +publish = "site" +command = """ +restore_home_cache ".cache" "pip cache" && +restore_cwd_cache '.venv' 'python virtualenv' && +pip3 install -q poetry && +poetry config virtualenvs.in-project true && +poetry install -v && +mkdocs build -d site +""" \ No newline at end of file