diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..432afff --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +.PHONY: deploy + +deploy: + rm -rf deploy + hyde gen + #hyde publish + +.PHONY: update-tufte-css +update-tufte-css: + git subtree pull -P tufte-css --squash https://github.com/edwardtufte/tufte-css.git gh-pages + cp -Rp tufte-css/{tufte.css,et-book} content/media/css + @echo Make sure to git add content/media/css and commit the updates (if any)! diff --git a/README.md b/README.md new file mode 100644 index 0000000..c2aa7f7 --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +Initial setup: +``` +virtualenv-3.8 p +. ./p/bin/activate +pip install -r requirements.txt +```