Skip to content

new: remove python docs in favour of qdrant.tech#1174

Merged
joein merged 4 commits into
devfrom
remove-documentation
May 6, 2026
Merged

new: remove python docs in favour of qdrant.tech#1174
joein merged 4 commits into
devfrom
remove-documentation

Conversation

@joein

@joein joein commented Mar 19, 2026

Copy link
Copy Markdown
Member

No description provided.

@netlify

netlify Bot commented Mar 19, 2026

Copy link
Copy Markdown

Deploy Preview for poetic-froyo-8baba7 ready!

Name Link
🔨 Latest commit 5d12994
🔍 Latest deploy log https://app.netlify.com/projects/poetic-froyo-8baba7/deploys/69fb23005e05380008e9972c
😎 Deploy Preview https://deploy-preview-1174--poetic-froyo-8baba7.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@coderabbitai

coderabbitai Bot commented Mar 19, 2026

Copy link
Copy Markdown

Note

Reviews paused

It 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 reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: c0624cd5-3cfc-4541-af47-d6695a585161

📥 Commits

Reviewing files that changed from the base of the PR and between c84f3b2 and 5d12994.

📒 Files selected for processing (1)
  • netlify.toml

📝 Walkthrough

Walkthrough

Removed the project's Sphinx documentation sources and related tooling: emptied docs/.gitignore; deleted docs/source/conf.py, docs/source/index.rst, ~60+ docs/source/*.rst module pages, and docs/source/quickstart.ipynb; removed the tool.poetry.group.docs.dependencies section from pyproject.toml; removed tools/generate_docs_netlify.sh; and replaced Netlify build configuration in netlify.toml with a redirects block routing all paths to https://qdrant.tech/documentation/ (301). No application code or public API declarations were changed.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 inconclusive)

Check name Status Explanation Resolution
Description check ❓ Inconclusive No description was provided by the author, making it impossible to assess whether it relates to the changeset. Add a pull request description explaining the rationale for removing the Python documentation and the migration to qdrant.tech.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately summarizes the main objective: removing Python documentation in favor of directing users to qdrant.tech, which aligns with the changeset.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch remove-documentation

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.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@joein joein force-pushed the remove-documentation branch from 04e83ac to 20daa8e Compare March 25, 2026 11:17

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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

📥 Commits

Reviewing files that changed from the base of the PR and between 2330f94 and c84f3b2.

📒 Files selected for processing (2)
  • netlify.toml
  • tools/generate_docs_netlify.sh
💤 Files with no reviewable changes (1)
  • tools/generate_docs_netlify.sh

Comment thread netlify.toml
Comment on lines +6 to +7
from = "/*"
to = "https://qdrant.tech/documentation/"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major | ⚡ Quick win

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.

Suggested change
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.

@joein joein requested a review from tbung May 6, 2026 11:23
@joein joein merged commit 7974c06 into dev May 6, 2026
12 checks passed
joein added a commit that referenced this pull request May 11, 2026
* new: remove python docs in favour of qdrant.tech

* fix: docs redirect

* fix: fix netlify

* fix: fix netlify
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants