From 2e2445f0cd3661cc4338bf65906e2dce3ed03ba6 Mon Sep 17 00:00:00 2001 From: Muhammad Haroon Date: Sat, 16 Nov 2024 19:03:55 +0500 Subject: [PATCH] update documentation of how to run the code --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 899b257b..63d63b4a 100755 --- a/README.md +++ b/README.md @@ -82,11 +82,13 @@ cd www ### Installation Install Ruby and the Gem package manager (pre-installed in Mac OS X) and install `jekyll` and its related packages available in the Github hosted version by running, from this directory: - bundle install; + bundle install ### Running Jekyll can run a local web server that rebuilds each time you save a page while editing (Execute the below command from root directory): - bundle exec jekyll serve --incremental; +`jekyll serve`: rebuilds the entire website from scratch each time. + +`bundle exec jekyll serve --incremental`:Only regenerates changed files since the last build, making development faster and more efficient but does not render posts (i.e. FAQ, blog, news, and events). Then open [http://localhost:4000](http://localhost:4000) ### Note