Code for https://prewired.org.
Based on Minimal Mistakes.
The below instructions assume you're on some Linux distribution:
- Install
ruby
packages packages for your system:- Ubuntu:
sudo apt install ruby ruby-dev build-essential
- Fedora:
sudo apt install ruby ruby-devel
(and maybe a build-essential equivalent)
- Ubuntu:
- Install jekyll and bundler using
gem
:sudo gem install jekyll bundler
- Clone and navigate into this repo:
mkdir dev cd dev git clone https://github.com/prewired/prewired.github.io.git cd prewired.github.io
- Configure bundle to install prerequisites locally:
bundle config set --local path 'vendor/bundle'
- Install prerequisites:
bundle install
- Launch the development server:
bundle exec jekyll serve