From 39f2095f635d54296514f4d4b7f78d2a6cee6285 Mon Sep 17 00:00:00 2001 From: SuperCowProducts <143343957+SuperCowProducts@users.noreply.github.com> Date: Tue, 30 Jun 2026 07:46:28 +0200 Subject: [PATCH 1/2] Add incremental build option to Jekyll serve command Updated Jekyll serve command to include incremental build option. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d32751900..08e01e67f 100755 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ npm install # Node packages (for the gulp/scss wo make fetch_upstream_files # Python, R, Julia, Matlab, C#, and F# tutorial content ``` -4. Serve the Jekyll application: `bundle exec jekyll serve --config _config_dev.yml`. +4. Serve the Jekyll application: `bundle exec jekyll serve --config _config_dev.yml --incremental` (the initial build may take a while). 5. Visit the pages at: [http://localhost:4000/](http://localhost:4000) From f86c193b9155b775e85a2d53aefc34735547ce8e Mon Sep 17 00:00:00 2001 From: Cameron DeCoster Date: Mon, 27 Jul 2026 17:01:23 -0600 Subject: [PATCH 2/2] Reword instructions Co-authored-by: Cameron DeCoster --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 08e01e67f..7685c0bb9 100755 --- a/README.md +++ b/README.md @@ -77,14 +77,14 @@ npm install # Node packages (for the gulp/scss wo make fetch_upstream_files # Python, R, Julia, Matlab, C#, and F# tutorial content ``` -4. Serve the Jekyll application: `bundle exec jekyll serve --config _config_dev.yml --incremental` (the initial build may take a while). +4. Serve the Jekyll application (the initial build may take a while): `bundle exec jekyll serve --incremental --config _config_dev.yml`. 5. Visit the pages at: [http://localhost:4000/](http://localhost:4000) **Note** The default development configuration (`_config_dev.yml`) excludes `_posts/plotly_js` and `_posts/python-v3` for faster builds. If you want to include or exclude different folders, copy `_config_dev.yml`, rename it `_config_personal.yml`, and modify the `exclude` statement. - If you name the Jekyll configuration file `_config_personal.yml`, it will be caught by the `.gitignore` file and not committed to version control. -- Run `bundle exec jekyll serve --config _config_personal.yml` to use the custom configuration file +- Run `bundle exec jekyll serve --incremental --config _config_personal.yml` to use the custom configuration file - Example configuration that loads **only** the JavaScript posts: ```yml