Code for the first version of https://prewired.org, which was online from 2015-2025.
See prewired.github.io for commit history; copied here in 2026 to simplify that repository.
Based on Minimal Mistakes.
The below instructions assume you're on some Linux distribution:
- Install
rubypackages 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