-
Install Ruby. For Mac, make sure you've installed Homebrew. Then:
brew install rbenv echo 'eval "$(rbenv init -)"' >> ~/.bash_profile source ~/.bash_profile eval "$(rbenv init -)" curl -fsSL https://github.com/rbenv/rbenv-installer/raw/master/bin/rbenv-doctor | bash rbenv install 2.7.1 rbenv global 2.7.1
-
Install Jekyll and bundler gems
gem install --user-install bundler jekyll echo 'export PATH="$HOME/.gem/ruby/2.7.1/bin:$PATH"' >> ~/.bash_profile source ~/.bash_profile
-
Clone this repository
git clone https://github.com/brahman-ai/mars.radio
-
Initiailize it with bundler
cd mars.radio bundle install
-
Launch locally
bundle exec jekyll serve
-
Go to http://localhost:4000