Developers at FINN blogging about tech. You can also find us on Twitter @FINN_tech.
We are using Jekyll. Read more about it here. You need Ruby to run the project. It will work out of the box on Mac. If you are on another platform check out the installation.
$ gem install bundler # only needed once
$ bundle install
$ bundle exec jekyll serve -w
These commands may not work out of the box if you have the wrong version of Ruby installed. You could try to upgrade to the latest Ruby version, and then run the following.
$ gem update --system
$ gem update bundler
Open http://localhost:4000 in your browser, and voilà.
If you want to preview drafts run with the '--drafts' flag
Check out CONTRIBUTING.
If you want to test locally, run
bundle exec htmlproofer ./_site
We are using Disqus (#1).
If you want access to the moderation tools sign up for a Disqus account and contact @pjwalstrom.
We are using Google Analytics for tracking (#7). If you want access to the tracking data contact @pjwalstrom.
I had to reinstall ruby-dev on Ubuntu 16.04 in WSL:
apt install build-essential
apt install ruby2.3-dev --reinstall
to get ruby.h
in the right place.