Conversation
There was a problem hiding this comment.
Pull request overview
This PR makes the backend’s API prefix configurable via an environment variable, adds “meta” endpoints for robots.txt and instance info under /.well-known, and continues the move toward bundling-friendly static imports (SQL/text) while adjusting the rolldown Deno plugin configuration.
Changes:
- Add
JSPB_APIenv var and use it as the base path for API routes and OpenAPI JSON. - Introduce meta endpoints:
GET /robots.txtandGET /.well-known/jspaste. - Switch DB migrations to static
.sqltext imports and tweak rolldown Deno plugin settings.
Reviewed changes
Copilot reviewed 9 out of 9 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| src/utils/env.ts | Adds JSPB_API env var with validation/normalization for API prefixing. |
| src/http/handler.ts | Mounts meta endpoints at root and moves API routing + OpenAPI JSON under env.JSPB_API. |
| src/endpoints/meta/index.ts | Composes meta endpoints into a single handler. |
| src/endpoints/meta/robots.ts | Serves robots.txt via a raw text import. |
| src/endpoints/meta/robots.txt | Adds a restrictive robots.txt for standalone backends. |
| src/endpoints/meta/wellKnown.ts | Exposes instance configuration info via /.well-known/jspaste. |
| src/database/migration.ts | Uses static imports for SQL migration scripts instead of dynamic imports. |
| rolldown.config.ts | Adjusts Deno rolldown plugin configuration (notably noTranspile). |
| .env.example | Documents the new JSPB_API setting and .well-known discovery. |
💡 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.
enh: robots.txt for standalone backends
enh: expose instance info in .well-known
enh: move transpilation to oxc
enh: static file imports
feat: custom api path