From 9252a90b49a6f87a82cc90fe177f2ceff481a45c Mon Sep 17 00:00:00 2001 From: Esteban De la Rosa Date: Thu, 28 Feb 2019 13:07:37 -0400 Subject: [PATCH] Add missing command to steps to serve the website Add `bundle install` command to steps list in order to get the website running --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4b78bdb37c..ee6e320b0c 100644 --- a/README.md +++ b/README.md @@ -35,11 +35,15 @@ gem install jekyll bundler ``` cd personal-website ``` -4. Build the site and make it available on a local server +4. Install missing gems +``` +bundle install +``` +5. Build the site and make it available on a local server ``` bundle exec jekyll serve ``` -5. Now browse to [http://localhost:4000](http://localhost:4000) +6. Now browse to [http://localhost:4000](http://localhost:4000) ### Publish