Skip to content

maptime/maptime.github.io

Folders and files

NameName
Last commit message
Last commit date
Feb 9, 2023
Oct 26, 2015
Oct 22, 2015
Sep 14, 2014
Jun 7, 2018
Aug 3, 2014
Oct 7, 2016
Oct 13, 2015
Oct 11, 2016
Oct 26, 2015
Oct 13, 2016
Jun 25, 2015
Mar 25, 2015
Aug 31, 2015
Aug 31, 2015
Aug 31, 2015
Jan 9, 2018
Feb 27, 2016
Aug 31, 2015
Sep 20, 2014
Sep 14, 2014
May 11, 2017
Apr 7, 2022
Oct 25, 2015
Sep 17, 2016
Mar 13, 2022
Aug 29, 2015
Sep 17, 2016
Sep 19, 2014
Aug 28, 2015
Oct 22, 2015

Repository files navigation

Build Status

maptime.github.io

This is the central repo of the maptime.io website. This is a Jekyll site served on Github Pages. If your environment is already setup, type in your terminal (the '$' refers to your prompt):

$ git clone git@github.com:maptime/maptime.github.io.git
$ cd maptime.github.io
$ jekyll serve --watch

Setting up your environment

Set up git and jekyll, which depend on ruby and homebrew:

For the code snippets below, you'll want to copy everything after the $ and paste into a terminal window.

Install Homebrew

Paste this into terminal

ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"

Hit Return to start installation.

After it finishes, make sure brew is configured correctly by running:

$ brew doctor

Install Git

  1. In terminal, run the following commands:
brew update
brew install git
  1. Then follow the Set Up Git instructions provided by GitHub to configure your github account through git.

Install Ruby

  1. MacOS comes with a built-in version of Ruby, but it's frequently out of date, and requires installing gems with sudo. It's better to install Ruby from homebrew:
brew install ruby
  1. Then add /usr/local/opt/ruby/bin to $PATH:
$ echo 'export PATH=/usr/local/opt/ruby/bin:$PATH' >> ~/.bash_profile

Install Jekyll

Run the following in terminal:

$ gem install jekyll -v 2.4.0
$ gem install rdiscount

Clone this repo

Clone the maptime.github.io repo on your computer. Then switch into that file directory.

$ git clone -b master git@github.com:maptime/maptime.github.io.git
$ cd maptime.github.io