Skip to content

Commit

Permalink
chore: update all urls to new tld
Browse files Browse the repository at this point in the history
  • Loading branch information
adelsz committed Feb 12, 2023
1 parent 1f98f99 commit 2eb4733
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<img width="340" height="150" align="right" src="https://raw.githubusercontent.com/adelsz/pgtyped/master/header.png">

# [PgTyped](https://pgtyped.vercel.app/)
# [PgTyped](https://pgtyped.dev/)

![Version](https://img.shields.io/github/v/release/adelsz/pgtyped)
[![Actions Status](https://github.com/adelsz/pgtyped/workflows/CI/badge.svg)](https://github.com/adelsz/pgtyped/actions) [![Join the chat at https://gitter.im/pgtyped/community](https://badges.gitter.im/pgtyped/community.svg)](https://gitter.im/pgtyped/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Expand All @@ -22,7 +22,7 @@ No need to map or translate your DB schema to TypeScript, PgTyped automatically

### Documentation

Visit our documentation page at [https://pgtyped.vercel.app/](https://pgtyped.vercel.app/)
Visit our documentation page at [https://pgtyped.dev/](https://pgtyped.dev/)

### Getting started

Expand All @@ -31,7 +31,7 @@ Visit our documentation page at [https://pgtyped.vercel.app/](https://pgtyped.ve
3. Create a PgTyped `config.json` file.
4. Run `npx pgtyped -w -c config.json` to start PgTyped in watch mode.

More info on getting started can be found in the [Getting Started](https://pgtyped.vercel.app/docs/getting-started) page.
More info on getting started can be found in the [Getting Started](https://pgtyped.dev/docs/getting-started) page.
You can also refer to the [example app](./packages/example/README.md) for a preconfigured example.

### Example
Expand Down Expand Up @@ -104,11 +104,11 @@ main();

### Resources

1. [Configuring pgTyped](https://pgtyped.vercel.app/docs/cli)
2. [Writing queries in SQL files](https://pgtyped.vercel.app/docs/sql-file-intro)
3. [Advanced queries and parameter expansions in SQL files](https://pgtyped.vercel.app/docs/sql-file)
4. [Writing queries in TS files](https://pgtyped.vercel.app/docs/ts-file-intro)
5. [Advanced queries and parameter expansions in TS files](https://pgtyped.vercel.app/docs/ts-file)
1. [Configuring pgTyped](https://pgtyped.dev/docs/cli)
2. [Writing queries in SQL files](https://pgtyped.dev/docs/sql-file-intro)
3. [Advanced queries and parameter expansions in SQL files](https://pgtyped.dev/docs/sql-file)
4. [Writing queries in TS files](https://pgtyped.dev/docs/ts-file-intro)
5. [Advanced queries and parameter expansions in TS files](https://pgtyped.dev/docs/ts-file)

### Project state:

Expand Down
2 changes: 1 addition & 1 deletion docs-new/docusaurus.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
title: 'PgTyped',
tagline: 'Typesafe SQL in TypeScript',
url: 'https://pgtyped.now.sh',
url: 'https://pgtyped.dev',
baseUrl: '/',
favicon: 'img/favicon.ico',
organizationName: 'adelsz', // Usually your GitHub org/user name.
Expand Down
4 changes: 1 addition & 3 deletions packages/cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,7 @@ const args = yargs(hideBin(process.argv))
description: 'File path (process single file, incompatible with --watch)',
},
})
.epilogue(
'For more information, find our manual at https://pgtyped.vercel.app/',
)
.epilogue('For more information, find our manual at https://pgtyped.dev/')
.parseSync();

const {
Expand Down

0 comments on commit 2eb4733

Please sign in to comment.