From ebfa9490216db355ebdf3a668c82718d0aa23523 Mon Sep 17 00:00:00 2001 From: Paul Murray Date: Thu, 14 Nov 2024 14:34:18 -0500 Subject: [PATCH] Update README.md with details on building the index page --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 23ed8ca..3cb4afe 100644 --- a/README.md +++ b/README.md @@ -29,3 +29,12 @@ A developing series of meetings about software development for science. - Sep 29, 2022 [Types](24_Types): An theoretical introduction to how thinking about data types can improve code, and specific applications to mypy - Oct 20, 2022 [Modern C++](25_ModernC++) - Dec 15, 2022 [File Formats and Storing Data](26_DataFormats) + +# Homepage Build Script + +A simple Node script — [build-index-page.mjs](build-index-page.mjs) is used to render `index.html`. The Node script does not have any external dependencies, so you don't need to `npm install`: + +```bash +module load nodejs +node build-index-page.mjs +```