Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,14 @@
* [Creating Models](database/creating-models.md)
* [Database Operations](database/operations.md)
* [Redis Integration](redis/README.md)
* [Queue System](queue/README.md)
* [Best Practices](queue/best-practices.md)
* [Creating Jobs](queue/creating-jobs.md)
* [Dispatching Jobs](queue/dispatching-jobs.md)
* [Queue Drivers](queue/drivers.md)
* [Failed Jobs](queue/failed-jobs.md)
* [Getting Started with Queue System](queue/getting-started.md)
* [Running Queue Workers](queue/running-workers.md)
* [Rate Limiting](rate-limiting/README.md)
* [Advanced Rate Limiting Features](rate-limiting/advanced-features.md)
* [Basic Rate Limiting](rate-limiting/basic-rate-limiting.md)
Expand Down Expand Up @@ -64,6 +72,7 @@
* [Docker Deployment Guide](docker-deployment.md)
* [Queue System](queue/README.md)
* [RouteMQ Tinker - Interactive REPL](tinker.md)
* [Docker Deployment Guide](docker-deployment.md)
* [Best Practices](queue/best-practices.md)
* [Creating Jobs](queue/creating-jobs.md)
* [Dispatching Jobs](queue/dispatching-jobs.md)
Expand Down
5 changes: 4 additions & 1 deletion scripts/update_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ def __init__(self, docs_dir: str = "docs"):
"configuration",
"database",
"redis",
"queue",
"rate-limiting",
"monitoring",
"testing",
Expand All @@ -38,7 +39,9 @@ def __init__(self, docs_dir: str = "docs"):
"api-reference",
"troubleshooting",
"best-practices.md",
"faq.md"
"faq.md",
"tinker.md",
"docker-deployment.md"
]

def extract_title_from_markdown(self, file_path: Path) -> str:
Expand Down