kanidm / site

Static Site for Kanidm.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Testing locally

I'm doing this in docker since macOS' Ruby is weird and broken.

Grab the image:

docker pull machines/jekyll

Update the gemfile:

docker run --rm \
  --mount type=bind,source="$PWD",target=/srv/jekyll \
  --publish 4000:4000 \
  jekyll/jekyll \
  bundle update

Run it in "serve" mode:

docker run --rm \
  --mount type=bind,source="$PWD",target=/srv/jekyll \
  --publish 4000:4000 \
  jekyll/jekyll \
  jekyll serve

This'll expose it on http://localhost:4000, open the link and you should see the site.

About

Static Site for Kanidm.com

License:Mozilla Public License 2.0


Languages

Language:HTML 61.4%Language:SCSS 36.6%Language:Makefile 2.0%