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:Ruby 44.3%Language:Makefile 34.7%Language:HTML 21.0%