Skip to content

Commit deafa27

Browse files
Copilotbrunoborges
andcommitted
Replace Python server with JDK's jwebserver
Co-authored-by: brunoborges <129743+brunoborges@users.noreply.github.com>
1 parent 1cec378 commit deafa27

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/copilot-instructions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,6 @@ Each `content/category/slug.json` file has this structure:
119119
## Local Development
120120

121121
```bash
122-
java -jar html-generators/generate.jar # Build HTML pages + snippets.json
123-
python3 -m http.server -d site 8090 # Serve locally
122+
java -jar html-generators/generate.jar # Build HTML pages + snippets.json
123+
jwebserver -d site -p 8090 # Serve locally
124124
```

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Generated files (`site/category/*.html` and `site/data/snippets.json`) are in `.
5656
java -jar html-generators/generate.jar
5757

5858
# Serve locally
59-
python3 -m http.server -d site 8090
59+
jwebserver -d site -p 8090
6060
# Open http://localhost:8090
6161
```
6262

0 commit comments

Comments
 (0)