Skip to content

Commit b652f89

Browse files
committed
Update README: fix Docker commands and CI references
- Fix 'make run-docker' to 'make docker-run' in Docker section - Add missing 'docker-build' and 'run-docker-dev' commands in Makefile docs - Correct CI testing reference: Python 3.11 only (removed 3.12) - README now matches current Makefile and CI configuration
1 parent 3379652 commit b652f89

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ A comprehensive Model Context Protocol (MCP) server that provides **completely f
5454
docker-compose up --build
5555

5656
# Or using Makefile
57-
make run-docker
57+
make docker-run
5858
```
5959

6060
#### Using Makefile (recommended for development):
@@ -341,7 +341,9 @@ make run-test # Test the NWS API
341341
make run # Run FastMCP server with SSE transport
342342

343343
# Docker
344-
make run-docker # Run server in Docker container
344+
make docker-build # Build Docker image
345+
make docker-run # Run server in Docker container
346+
make run-docker-dev # Start development mode with hot reload
345347
make docker-logs # View Docker logs
346348
make docker-stop # Stop Docker containers
347349

@@ -448,7 +450,7 @@ We welcome contributions! The project includes comprehensive development tools t
448450
### Continuous Integration
449451

450452
The project uses GitHub Actions for:
451-
- **Automated testing** on Python 3.11 and 3.12
453+
- **Automated testing** on Python 3.11
452454
- **Code quality checks** (formatting, linting, type checking)
453455
- **Security scanning** with Bandit
454456
- **Coverage reporting** to Codecov

0 commit comments

Comments
 (0)