From 7b56a8775b682d0335517d54c35569458d4ca636 Mon Sep 17 00:00:00 2001 From: Said Zitouni Date: Wed, 4 Mar 2026 21:11:54 -0500 Subject: [PATCH] update README.md for prerequisite and instructions t run server locally --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bca85d4..99a5b0c 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,7 @@ The site supports 11 languages: English, Deutsch, Español, Português (Brasil), ### Prerequisites - **Java 25+** (e.g. [Temurin](https://adoptium.net/)) +- **JBang** ([Jbang](https://www.jbang.dev/)) ### Generate and serve @@ -68,8 +69,8 @@ The site supports 11 languages: English, Deutsch, Español, Português (Brasil), # Generate all HTML pages and data/snippets.json into site/ jbang html-generators/generate.java -# Serve locally -jwebserver -b 0.0.0.0 -d site -p 8090 +# Serve locally need to replace path with absolute path to site folder +jwebserver -b 0.0.0.0 -d path/to/site -p 8090 # Open http://localhost:8090 ```