aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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
+"""