Attempt at making deployment via netlify possible

This commit is contained in:
Cian Hughes
2023-11-10 12:55:00 +00:00
parent 5a35d17bfc
commit 7fec6ae21c

10
netlify.toml Normal file
View File

@@ -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
"""