diff --git a/.gitignore b/.gitignore index fbc984c9d..b768cd8d4 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,8 @@ *~ VERSION +/website/ + ## Github Python .gitignore ## See https://github.com/github/gitignore/blob/master/Python.gitignore ################################################################################ diff --git a/Makefile b/Makefile index 49cde37a7..2a6d6301a 100644 --- a/Makefile +++ b/Makefile @@ -37,3 +37,12 @@ clean: docs-lint: vale sync vale docs + +website: + git clone git@github.com:libretime/website.git + +website/node_modules: website + yarn --cwd website install + +docs-dev: website website/node_modules + DOCS_PATH="../docs" yarn --cwd website start