Site of @textventure. Built with Jekyll and hosted on GitHub Pages.
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
Clone the repository:
$ git clone --recursive https://github.com/textventure/textventure.github.io.git
$ cd $_
Install dependencies:
$ bundle install
Update dependencies:
$ git checkout master
$ git pull
$ bundle update
$ 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.
$ bundle exec jekyll build
The site will be generated at ./_site/
.