musigma.blog

A blog about programming.

Stars
0
Committers
2

This is the source code for my blog on musigma.blog.

Installation on macOS

  1. Install rbenv: brew install rbenv
  2. Enable rbenv: eval "$(rbenv init -)"
  3. Install bundler and jekyll: gem install bundler jekyll
  4. Test the site by executing: bundle exec jekyll serve

Installation on GNU/Linux

  1. Install dependencies: sudo pacman -Si ruby nodejs
  2. Install more dependencies: gem install bundler jekyll && bundle install
  3. Test the site by executing: bundle exec jekyll serve

Deployment

  1. Build site: bundle exec jekyll build
  2. Deploy site: tar -czf - -C _site . | ssh musigma.blog 'tar -xzf -'