blob: 5102e6de8b5916a3ced4726f9d2020e91b58d8b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
all: development
production:
JEKYLL_ENV=production bundle exec jekyll build
development:
JEKYLL_ENV=development bundle exec jekyll build
clean:
bundle exec jekyll clean
make_push_to_server: production
rsync -av _site/ w019f723.kasserver.com:/www/htdocs/w019f723/blog.uvokchee.de/
watch:
bundle exec jekyll serve -l --drafts
ipfs:
rm -f ipfs.tar
JEKYLL_ENV=ipfs bundle exec jekyll build
cd _site && cp all.html index.html && tar cvf ../ipfs.tar $$(grep -L redirect *.html) assets index.html
|