The website of Committe of Zero over at sonome.dareno.me.
Built with Jekyll.
- Clone this repository recursively
git clone --recursive https://github.com/CommitteeOfZero/committeeofzero.github.io
- Install ruby
- Install dependencies
bundle install
- If problems arise, try
bundle update
- If problems arise, try
- Run
jekyll serve
bundle exec jekyll serve
- Uncomment the jekyll gems in
Gemfile
(remove#
)gem "jekyll", "3.3.0" gem "jekyll-paginate" gem "jekyll-sitemap"
- Comment out
gem "github-pages", group: :jekyll_plugins
inGemfile
(with#
). - Uncomment the
gems
attribute in_config.yml
(You might need to rungems: - jekyll-sitemap - jekyll-paginate
bundle install
again) - Uncomment the
url
attribute in_config.yml
and set it accordinglyMake sure to set the URL string to the public URL of the machine you are hosting on.url: "http://temp.dareno.me"
- Run
jekyll serve
in production modeJEKYLL_ENV=production bundle exec jekyll serve