diff --git a/README.md b/README.md index c2c1dd6..5a9a0b1 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,8 @@ Since [Metafacture Fix](https://github.com/metafacture/metafacture-fix) is intro It should help you to get accustomed with Metafacture Core and Metafacture Fix. Have fun. +The content pages can be found [in `/docs/`](/docs/) + Lesson plan: [01 Introducing metafacture](./docs/01_Introducing_Metafacture.md) @@ -37,3 +39,26 @@ Lesson plan: [11 Mapping Marc to Dublin Core](./docs/11_MARC_to_Dublin_Core.html) +## Testing + +### Installation +sudo apt remove ruby-bundler; sudo apt purge jekyll; sudo apt update; sudo apt install build-essential; bundle install; bundle exec jekyll serve + +If you are on debian derivates go install build-essentials: +``` +sudo apt install build-essential +``` +Then you can use the Ruby Dependency Management to build all you need: +``` +bundle install +``` +Start jekyll like this: +``` +bundle exec jekyll serve +``` +If you experience troubles, make sure to not have jekyll installed via you +package manager. Also remove ruby-bundler. On debian derivates do: +``` +sudo apt purge jekyll; sudo apt remove ruby-bundler +``` +