From a83d1220fcb1f96f14e5c3adf6a8eeafe1242c85 Mon Sep 17 00:00:00 2001 From: Cian Hughes Date: Fri, 10 Nov 2023 16:52:32 +0000 Subject: [PATCH] Added netlify config --- 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