A Jekyll based site providing documentation for developers to get started using UiTDatabank.
Make sure you have at least Ruby 2.0 available, as Jekyll requires it.
- Fork this repo
- Clone your new fork onto your system and navigate into it
- Install Bundler if you don't have it installed yet:
gem install bundler
- Run the command:
bundle install
from the project root to install the necessary ruby dependencies
You should now have a number of Rake tasks available:
- Listing the available tasks:
bundle exec rake
- Building the Jekyll site:
bundle exec rake build
- Serving the Jekyll site:
bundle exec rake serve
- Testing link resolution:
bundle exec rake test
- Testing the HTML:
bundle exec rake html_check
- Removing all generated content:
bundle exec rake clobber
You can safely start adding documentation in the content
directory.
When you're ready, send a pull request to the original repo.