generated from sambacha/starter-slim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (21 loc) · 775 Bytes
/
Makefile
File metadata and controls
29 lines (21 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
DEBUG=JEKYLL_GITHUB_TOKEN=blank PAGES_API_URL=http://0.0.0.0
help:
@echo "HomePage: https://github.com/backbonecabal/knowledgebase\n"
@echo "Usage:"
@echo " make [subcommand]\n"
@echo "Subcommands:"
@echo " clean Clean the workspace"
@echo " dist Build the theme css and script"
@echo " status Display status before push"
@echo " build Build the test site"
@echo " server Make a livereload jekyll server to development"
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