This is the source of dancesWithMachines web page. The website is build with Jekyll.
This website is build with Jekyll and the theme used is Serial Programmer developed by Sharad Raj licensed under MIT license. License can be found in the root of this repository.
Content of this website is the property of Mateusz Kusiak (Timax).
- Install ruby 3.0 via homebrew.
Note: MacOS comes with ruby preinstalled, but messing with default instance is not advised.
brew install ruby@3.0
- Add ruby path to
~/.bash_profile
(if using bash).# CUSTOM - Use brew provided ruby 3.0 export PATH="/opt/homebrew/opt/ruby@3.0/bin:$PATH"
- Source
~/.bash_profile
.source ~/.bash_profile
- Install Jekyll and Bundler.
gem install bundler jekyll
- Download source files and go to the root of downloaded contents.
- Install dependencies.
Note:
bundle install
webrick
might need to be installed manually.gem install webrick
- Build and serve the website.
bundle exec jekyll serve --livereload