diff options
author | 2024-08-09 19:54:45 +0100 | |
---|---|---|
committer | 2024-08-09 19:54:45 +0100 | |
commit | b9aae5092dc0bdcfa555711d89b2413f188f1f5e (patch) | |
tree | 9a86ec57bc7b3e98ee4100624f1a91bd0bead815 | |
parent | Correct previous commit in submodules (diff) |
Add Netlify config file
-rw-r--r-- | netlify.toml | 10 |
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 +""" |