Skip to content

chore(docs): fix schema links #451

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ You’ll now have a `postgrestools.jsonc` file in your directory:

```json
{
"$schema": "https://pgtools.dev/schemas/0.0.0/schema.json",
"$schema": "https://pgtools.dev/latest/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
Expand Down Expand Up @@ -121,6 +121,8 @@ You’ll now have a `postgrestools.jsonc` file in your directory:

Make sure to edit the database connection settings to connect to your local development database. To see all options, run `postgrestools --help`.

You can use your current `postgrestools` version instead of "latest" in the `$schema` URL, e.g. `https://pgtools.dev/0.8.1/schema.json`.

## Usage

You can use Postgres Tools via the command line or a using a code editor that supports an LSP.
Expand Down
2 changes: 1 addition & 1 deletion postgrestools.jsonc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "./docs/schemas/latest/schema.json",
"$schema": "./docs/schema.json",
"vcs": {
"enabled": false,
"clientKind": "git",
Expand Down