No description
  • JavaScript 83.9%
  • CSS 6.2%
  • HTML 3.7%
  • SCSS 3%
  • Haml 2.2%
  • Other 0.9%
Find a file
2022-11-29 13:50:42 +02:00
helpers Added reference to theme in github. 2017-03-21 22:30:10 -04:00
source Updated slightly cleaner version of UFI file 2022-11-29 13:50:42 +02:00
.gitignore Fixed all but one of the articles so they now compile to pdf. Fixed some latex mistakes in the duals article as well. 2021-07-08 23:25:35 -04:00
.gitlab-ci.yml Fixed CI. 2020-09-22 21:09:55 -04:00
config.rb Putting the redirect in in the other direction. 2020-09-29 19:19:41 -04:00
Gemfile Fixed kramdown version. 2020-06-30 15:00:26 -04:00
Gemfile.lock Updated lockfile. 2020-09-22 17:35:55 -04:00
make-pdf.sh Fixed all but one of the articles so they now compile to pdf. Fixed some latex mistakes in the duals article as well. 2021-07-08 23:25:35 -04:00
readme.md added additional info on how to compile via CI. 2020-06-30 12:48:05 -04:00

bundle install or bundle update
bundle exec middleman serve
bundle exec middleman build

on Mac OSX The following is needed to properly execute the first line to get ffi t install (might need to repeat again without env variables after ffi installs if other packages fail.)

LDFLAGS="-L/usr/local/opt/libffi/lib" PKG_CONFIG_PATH="/usr/local/opt/libffi/lib/pkgconfig" bundle install --path vendor

Alternatively compile it using a docker container:

docker run -v "$PWD":/app nielsvdoorn/middleman bundle install && bower install && bundle exec middleman build

Or even easier, run the build the exact same way it will be run by the gitlab CI. Keep in mind this will not pull from your local directory though, it pulls from whatever is in git:

gitlab-runner exec docker pages