- First, you need to install ruby and the ruby bundler (can be different based on the OS):
sudo pacman -S ruby rubygems ruby-bundler
## Or if you use the hated Ubuntu ...
# sudo apt install ruby-bundler
- Install the dependencies:
bundle install # might ask for your sudo password
- (optional) Update the dependencies:
bundle update # might ask for you sudo password
- Run the server:
bundle exec jekyll serve
- You should be able to view the webpage at http://127.0.0.1:4000/.
Based on the starter kit for Alembic.