diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 0000000..984fe1a --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,16 @@ +DEBUG=JEKYLL_GITHUB_TOKEN=blank PAGES_API_URL=http://0.0.0.0 + +default: + @gem install jekyll bundler && bundle install + +update: + @bundle update + +clean: + @bundle exec jekyll clean + +build: clean + @${DEBUG} bundle exec jekyll build --profile --config _config.yml,.debug.yml + +server: clean + @${DEBUG} bundle exec jekyll server --livereload --config _config.yml,.debug.yml