Skip to content

Commit 13aad23

Browse files
committed
Update name of web server command
1 parent 66ab9a7 commit 13aad23

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.devcontainer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ After the container is running, you can use all the Deno tasks defined in `deno.
4242
```bash
4343
deno task # List all available tasks
4444
deno task build # Build the site
45-
deno task web # Start development server
45+
deno task serve # Start development server
4646
deno task test # Run tests
4747
deno task lint # Lint and format code
4848
```

.github/copilot-instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ All commands are run via `deno task <command>`:
1010
- **Test**: `deno task test` - Run all tests in the `src/` directory
1111
- Single test: `deno test --allow-run=deno --allow-env --allow-read --allow-net src/<filename>.test.ts`
1212
- **Lint**: `deno task lint` - Run Deno lint and format
13-
- **Local server**: `deno task web` - Serve built site from `public/` directory on port 8000
13+
- **Local server**: `deno task serve` - Serve built site from `public/` directory on port 8000
1414

1515
Other useful commands:
1616

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"description": "Deploy to AWS ECS.",
8383
"command": "bash ./infra/deploy-aws.sh"
8484
},
85-
"web": {
85+
"serve": {
8686
"description": "Start a web server to show the built site.",
8787
"command": "deno run --allow-net --allow-read jsr:@std/http/file-server ./public"
8888
},

0 commit comments

Comments
 (0)