new: remove python docs in favour of qdrant.tech#1174
Conversation
✅ Deploy Preview for poetic-froyo-8baba7 ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
Note Reviews pausedIt looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the Use the following commands to manage reviews:
Use the checkboxes below for quick actions:
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughRemoved the project's Sphinx documentation sources and related tooling: emptied Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes 🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 inconclusive)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
04e83ac to
20daa8e
Compare
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In `@netlify.toml`:
- Around line 6-7: The redirect currently maps from "from = \"/*\"" to a fixed
homepage "to = \"https://qdrant.tech/documentation/\"" which drops any deep-link
path; update the redirect to forward the matched splat segment by using the
:splat token in the to value (e.g., change the to value to
"https://qdrant.tech/documentation/:splat") and ensure the redirect rule (the
from and to fields) includes an appropriate status (e.g., 301) so legacy paths
are preserved and forwarded to the matching documentation subpath.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Organization UI
Review profile: CHILL
Plan: Pro
Run ID: 09bf76eb-d7da-4689-9101-b7d478c8855c
📒 Files selected for processing (2)
netlify.tomltools/generate_docs_netlify.sh
💤 Files with no reviewable changes (1)
- tools/generate_docs_netlify.sh
| from = "/*" | ||
| to = "https://qdrant.tech/documentation/" |
There was a problem hiding this comment.
Preserve deep-link paths in the redirect target.
This redirect sends every legacy URL to one homepage URL, so old deep links lose context. Prefer forwarding the matched path segment to reduce broken navigation during migration.
Proposed change
[[redirects]]
from = "/*"
- to = "https://qdrant.tech/documentation/"
+ to = "https://qdrant.tech/documentation/:splat"
status = 301
force = true📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| from = "/*" | |
| to = "https://qdrant.tech/documentation/" | |
| [[redirects]] | |
| from = "/*" | |
| to = "https://qdrant.tech/documentation/:splat" | |
| status = 301 | |
| force = true |
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@netlify.toml` around lines 6 - 7, The redirect currently maps from "from =
\"/*\"" to a fixed homepage "to = \"https://qdrant.tech/documentation/\"" which
drops any deep-link path; update the redirect to forward the matched splat
segment by using the :splat token in the to value (e.g., change the to value to
"https://qdrant.tech/documentation/:splat") and ensure the redirect rule (the
from and to fields) includes an appropriate status (e.g., 301) so legacy paths
are preserved and forwarded to the matching documentation subpath.
* new: remove python docs in favour of qdrant.tech * fix: docs redirect * fix: fix netlify * fix: fix netlify
No description provided.