No description
Find a file
Jeffrey Phillips Freeman d8ed6bd553 Fixed typo
2020-12-23 16:09:50 -05:00
helpers Added reference to theme in github. 2017-03-21 22:30:10 -04:00
source Fixed typo 2020-12-23 16:09:50 -05:00
.gitignore Added vendor to gitignore. 2020-09-22 17:34:42 -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
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