Some software.
[hugo](https://gohugo.io/getting-started/installing)
make
wget
unzip
To initialize the theme
git submodule update --init --recursive
To download necessary static and assets files
make static assets
Fetching and merging last changes:
git pull
If you are not editing the theme:
git submodule update --recursive
If you are editing the theme:
cd themes/events
git checkout master
git pull
And once master
is checked out you can simply replace git pull
at the root by
git pull --recurse-submodules
To build locally
make build
To serve locally
make serv
To deploy
make deploy
Requirements same as dev (see above) + scp
.