Skip to content

prewired/prewired.github.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Prewired Website

Code for https://prewired.org.

Based on Minimal Mistakes.

Building this site locally

The below instructions assume you're on some Linux distribution:

  1. 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)
  2. Install jekyll and bundler using gem:
    • sudo gem install jekyll bundler
  3. Clone and navigate into this repo:
    mkdir dev
    cd dev
    git clone https://github.com/prewired/prewired.github.io.git
    cd prewired.github.io
    
  4. Configure bundle to install prerequisites locally:
    • bundle config set --local path 'vendor/bundle'
  5. Install prerequisites:
    • bundle install
  6. Launch the development server:
    • bundle exec jekyll serve