File tree Expand file tree Collapse file tree 1 file changed +5
-12
lines changed
Expand file tree Collapse file tree 1 file changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -210,9 +210,6 @@ docker run -p 5000:5000 python.publisher.subscriber:latest
210210``` bash
211211# Run directly
212212python src/pubsub_ws.py
213-
214- # Or using Make
215- make run-server
216213```
217214
218215The
@@ -331,32 +328,28 @@ pytest-watch tests/ -v
331328
332329``` bash
333330# Install development dependencies
334- make install-dev
331+ make install
335332
336333# Setup pre-commit hooks
337334pre-commit install
338335
339- # Run linting
340- make lint
341-
342336# Format code
343337make format
344338
345339# Run all checks
346- make pre-commit
340+ make check
347341```
348342
349343### Available Make Commands
350344
351345``` bash
352346make help # Show all available commands
353347make test # Run tests
354- make lint # Run linting checks
355348make format # Format code
349+ make check # Run format and tests
356350make clean # Clean generated files
357- make build # Build distribution packages
358- make docker-build # Build Docker image
359- make docker-run # Run Docker container
351+ make install # Install dependencies
352+ make update # Update dependencies
360353```
361354
362355## 📊 Database Schema
You can’t perform that action at this time.
0 commit comments