aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2024-08-09 19:54:45 +0100
committerGravatar Joe Banks <[email protected]>2024-08-09 19:54:45 +0100
commitb9aae5092dc0bdcfa555711d89b2413f188f1f5e (patch)
tree9a86ec57bc7b3e98ee4100624f1a91bd0bead815
parentCorrect previous commit in submodules (diff)
Add Netlify config file
-rw-r--r--netlify.toml10
1 files changed, 10 insertions, 0 deletions
diff --git a/netlify.toml b/netlify.toml
new file mode 100644
index 0000000..e807b83
--- /dev/null
+++ b/netlify.toml
@@ -0,0 +1,10 @@
+[build]
+publish = "docs/site/"
+command = """
+restore_home_cache ".cache" "pip cache" &&
+restore_cwd_cache '.venv' 'python virtualenv' &&
+pip3 install -q poetry &&
+poetry config settings.virtualenvs.in-project true &&
+poetry install &&
+poetry run task build-docs
+"""