Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jvz/musigma.blog

A blog about programming.
https://github.com/jvz/musigma.blog

blog cryptography functional-programming java programming reactive scala security shell

Last synced: about 1 month ago
JSON representation

A blog about programming.

Awesome Lists containing this project

README

        

This is the source code for my blog on [musigma.blog](https://musigma.blog/).

## Installation on macOS
0. Install rbenv: `brew install rbenv`
0. Enable rbenv: `eval "$(rbenv init -)"`
0. Install bundler and jekyll: `gem install bundler jekyll`
0. Test the site by executing: `bundle exec jekyll serve`

## Installation on GNU/Linux
0. Install dependencies: `sudo pacman -Si ruby nodejs`
0. Install more dependencies: `gem install bundler jekyll && bundle install`
0. Test the site by executing: `bundle exec jekyll serve`

## Deployment
0. Build site: `bundle exec jekyll build`
0. Deploy site: `tar -czf - -C _site . | ssh musigma.blog 'tar -xzf -'`