john melesky b86c559acf updated resume | před 6 roky | |
---|---|---|
css | před 8 roky | |
images | před 8 roky | |
posts | před 7 roky | |
stuff | před 8 roky | |
talks | před 8 roky | |
templates | před 6 roky | |
.gitignore | před 8 roky | |
README.md | před 6 roky | |
about.md | před 8 roky | |
my-site.cabal | před 8 roky | |
resume_jmelesky.pdf | před 6 roky | |
site.hs | před 8 roky | |
stack.yaml | před 8 roky | |
stuff.md | před 8 roky | |
talks.md | před 8 roky | |
work.md | před 8 roky |
Yeah, yeah, some documentation.
This is written in Hakyll.
From scratch:
apt install haskell-stack
. It's an older version, but it worksstack build --install-ghc
apt install libz-dev
stack exec site build
_site
If you add a page (blog post or whatnot):
stack exec site build
If you make a change to site.hs
:
stack build
stack exec site rebuild
Honestly, you can use rebuild
all the time if you want to, but it will be a little longer -- it deletes _site
and builds it from scratch.
All you need is stack exec site watch
.
On the current Rimu VM (as of mid-2018):
cd code/pdorg_site
git pull; stack exec site rebuild
As above, if you make a change to the site.hs
, you'll instead want:
cd code/pdorg_site
git pull
stack build
stack exec site rebuild