Source code for my website.
sudo apt install ruby-dev ruby-bundler nodejs
brew install ruby
brew install node
gem install bundler
bundle install
jekyll serve -l -H localhost
You can use the provided Dockerfile
to build a container that will run the site for you if you have Docker installed.
docker build -t jekyll-site .
docker run -p 4000:4000 --rm -v $(pwd):/usr/src/app jekyll-site