Skip to content

textventure/textventure.github.io

Repository files navigation

Site of @textventure. Built with Jekyll and hosted on GitHub Pages.

Prerequisites

Ruby 2.6.0:

$ ruby --version

If your version is behind, you can either install ruby with rbenv or RVM.

To install and set up rbenv on macOS:

$ brew install rbenv
$ rbenv init
# restart or open a new shell
$ curl -fsSL https://github.com/rbenv/rbenv-installer/raw/master/bin/rbenv-doctor | bash
$ rbenv install 2.6.0
$ rbenv local 2.6.0

And Bundler:

$ gem install bundler
$ bundler --version

Installation

Clone the repository:

$ git clone --recursive https://github.com/textventure/textventure.github.io.git
$ cd $_

Install dependencies:

$ bundle install

Update

Update dependencies:

$ git checkout master
$ git pull
$ bundle update

Run

Development Server

$ bundle exec jekyll serve --livereload # --incremental

The server will be running at http://127.0.0.1:4000/:

$ open http://127.0.0.1:4000/

Press CTRL-C to stop the server.

Production Build

$ bundle exec jekyll build

The site will be generated at ./_site/.