From ffc03e95e64016e2e2316974dc177f3f5b497a49 Mon Sep 17 00:00:00 2001 From: Tait Hoyem <44244401+TTWNO@users.noreply.github.com> Date: Thu, 26 Mar 2020 01:40:44 +0000 Subject: [PATCH] Add info for running website in local server --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index 63909df..111c6c2 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,23 @@ # tait.tech The uncompiled version of my website. Compiled files in _site + +### To compile + +To compile the files, simply use the bundle Ruby gem. + +``` +bundle exec jekyll build +``` + +to compile once. If you decide you want to actually have changes appear instantly, use the following + +``` +bundle exec jekyll watch +``` + +To run a local web server to view the changes on: +``` +bundle exec jekyll server -w +``` + +This will watch for the latest changes, compile them, and make them available on localhost:4000