This website was created to show off everything related to the Compliance Resource Pack for Minecraft. On it you'll find the main pack, add-ons, mod support and much more. You can also contribute thanks to the instructions below.
You can create a fork of this repository, apply your changes/additions and then create a pull request
You need a two requirements before developing the website. First you need Ruby. With Ruby you will need to install Jekyll by typing the following command in your favorite terminal:
gem install bundler jekyll
If you are using Ruby 3 or higher, you also need to install webrick:
gem install webrick
Then you need to install the bundle provided in the Gemfile:
bundle install
Then you need to build the website with this command:
bundle exec jekyll build
Eventually, in order to automatically rebuild the website if an existing file was updated, you can run:
bundle exec jekyll serve
After that you can enjoy your website on your local machine at the following address: http://127.0.0.1:4000/. Enjoy!