docs: fix broken jetify.com documentation links (404s)#2848
Open
mikeland73 wants to merge 2 commits into
Open
Conversation
The documentation site moved from the /devbox/docs/ URL prefix to /docs/devbox/, leaving the links in README.md and various example READMEs returning 404s. This updates all occurrences of jetify.com/devbox/docs to jetify.com/docs/devbox, matching the URL scheme already used by devbox-generated .envrc files. Fixes #2769
Contributor
There was a problem hiding this comment.
Pull request overview
This PR fixes broken Jetify Devbox documentation links across the repository by updating the deprecated https://www.jetify.com/devbox/docs/... URL prefix to the new https://www.jetify.com/docs/devbox/... scheme, addressing the 404s reported in #2769.
Changes:
- Updated Devbox documentation links in the main
README.mdand multiple example READMEs to usehttps://www.jetify.com/docs/devbox/.... - Updated the plugins contribution README to point at the new docs path.
- Updated the VS Code extension’s “See Devbox docs” external link target to the new docs path.
Reviewed changes
Copilot reviewed 16 out of 16 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
vscode-extension/src/devbox.ts |
Updates the docs URL opened from the VS Code extension on Windows. |
README.md |
Fixes top-level docs links (install, quickstart, CLI ref, contributor quickstart) to the new docs scheme. |
plugins/README.md |
Fixes the plugin user documentation link to the new docs scheme. |
examples/tutorial/README.md |
Fixes tutorial “Next Steps” links to the new docs scheme. |
examples/stacks/rails/README.md |
Fixes related docs link to the new docs scheme. |
examples/stacks/lepp-stack/README.md |
Fixes related docs links to the new docs scheme. |
examples/stacks/lapp-stack/README.md |
Fixes related docs links to the new docs scheme. |
examples/stacks/jekyll/README.md |
Fixes badge and related docs links to the new docs scheme. |
examples/stacks/django/README.md |
Fixes badge and related docs links to the new docs scheme. |
examples/README.md |
Fixes badge link to contributor quickstart on the new docs scheme. |
examples/flakes/README.md |
Fixes “using flakes” guide link to the new docs scheme. |
examples/development/ruby/README.md |
Fixes related docs links to the new docs scheme. |
examples/development/haskell/my-project/README.md |
Fixes Haskell docs link to the new docs scheme. |
examples/data_science/tensorflow/README.md |
Fixes quickstart install anchor link to the new docs scheme. |
examples/data_science/llama/README.md |
Fixes quickstart install anchor link to the new docs scheme. |
examples/cloud_development/temporal/README.md |
Fixes badge link to contributor quickstart on the new docs scheme. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes #2769
The documentation links in
README.md(and many example READMEs) point to the old URL prefixhttps://www.jetify.com/devbox/docs/..., which now returns 404. The docs site moved to thehttps://www.jetify.com/docs/devbox/...scheme.This PR normalizes every broken occurrence of
jetify.com/devbox/docs→jetify.com/docs/devbox.Why this is the correct target
The repo already uses both schemes inconsistently. Notably, the
.envrcfiles that devbox itself generates (e.g.examples/development/go/hello-world/.envrc) already use the new, working scheme:and several example READMEs already use
https://www.jetify.com/docs/devbox/installing-devbox/index. This change brings the remaining stale links in line with that canonical scheme.Changes
examples/**/README.md,plugins/README.md,vscode-extension/src/devbox.ts).jetify.com/img/devbox/...,jetify.com/devbox/img/...) were intentionally left untouched — only the/devbox/docs/documentation prefix was changed.Testing
grep -rIn "jetify.com/devbox/docs" .returns nothing.cc @pmorch (issue reporter) — thanks for flagging this!
Generated by Claude Code