This is the corresponding repository to https://pur.team
This repository belongs to the PUR ("Pflegeunterstützende Robotik") project of the University of Konstanz, FH Vorarlberg, Alterszentrum Emmersberg and Caritas Altenhilfe Konstanz.
If you have any technical questions, please contact Klaus Herberth, University of Konstanz.
The easiest way to build this site is by using Docker:
docker run --rm --volume="$PWD:/srv/jekyll" -it jekyll/jekyll:3.8 jekyll build
In development you can also serve an instance with:
docker run --rm -p 127.0.0.1:4000:4000/tcp --volume="$PWD:/srv/jekyll" -it jekyll/jekyll:3.8 jekyll serve --incremental
Make sure you have bundler, yarn and jekyll installed on your system, before you
install all dependencies with bundler install
and yarn install
.
To build the site, execute bundle exec jekyll build
or, if you like to use
the built-in webserver, bundle exec jekyll serve --incremental
.
Updating all dependencies is as easy as calling yarn upgrade && yarn build
.
Please beware that all dependencies should be commited to the repository,
because Github pages is not able to get them from npm.