docs: remove the filesystem-to-database migration guide - #68
Merged
Conversation
The guide is unusable now that API v1 is gone. Its core step (3c) runs `npm run sourcify:database sync`, which POSTs to the v1 `/verify` endpoint removed in argotorg/sourcify#2877. It had already rotted independently of that: - step 3b reads chain IDs from services/server/src/sourcify-chains-default.json, deleted by the chain-config refactor - steps 1b and 3c configure the DB through database.json and `npm run migrate:up -- --env=`, but the service moved to dbmate + .env - the closing "What's next" section says the repository APIs still read from RepositoryV1, which stopped being true when the database became the source of truth The migration it describes was a one-off from the filesystem repository to the database, completed long ago. Anyone who still needs it can read it from git history alongside the pinned sourcify-server@1.6.0 tag the process depended on. The API v1 Brownouts blog post is deliberately left in place — it is a dated announcement and part of the historical record, not documentation of a supported workflow. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
kuzdogan
added a commit
to kuzdogan/sourcify
that referenced
this pull request
Jul 27, 2026
The guide is being deleted in sourcifyeth/docs#68 because its sync step depends on the v1 /verify endpoint this PR removes. The "Run server" docs page live-embeds this README, so leaving the link would render a dead link on docs.sourcify.dev. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Deploying docs with
|
| Latest commit: |
0f637e1
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://be116e3b.docs-8pb.pages.dev |
| Branch Preview URL: | https://chore-remove-apiv1-migration.docs-8pb.pages.dev |
kuzdogan
marked this pull request as draft
July 27, 2026 14:21
kuzdogan
marked this pull request as ready for review
July 28, 2026 08:48
manuelwedler
approved these changes
Jul 29, 2026
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
Removes Migration from Filesystem to Database (
docs/8. Run your instance/6. Database migrations.md, slug/database-migration).Companion to argotorg/sourcify#2877.