Skip to content

Commit f09d96f

Browse files
authored
docs: Replace form with dashboard link (#2840)
1 parent 53d1792 commit f09d96f

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

docs/howto/managed-databases.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Managed databases
22

3+
```{note}
4+
Managed databases are powered by [sqlc Cloud](https://dashboard.sqlc.dev). Sign up for [free](https://dashboard.sqlc.dev) today.
5+
```
6+
37
*Added in v1.22.0*
48

59
`sqlc` can create and maintain hosted databases for your project. These
@@ -12,15 +16,12 @@ other use-cases. Beyond linting queries, you can use sqlc managed databases
1216
in your tests to quickly stand up a database per test suite or even per test,
1317
providing a real, isolated database for a test run. No cleanup required.
1418

15-
Interested in trying out managed databases? Sign up [here](https://docs.google.com/forms/d/e/1FAIpQLSdxoMzJ7rKkBpuez-KyBcPNyckYV-5iMR--FRB7WnhvAmEvKg/viewform) or send us an email
16-
at [hello@sqlc.dev](mailto:hello@sqlc.dev).
17-
1819
## Configuring managed databases
1920

2021
To configure `sqlc` to use a managed database, remove the `uri` key from your
2122
`database` configuration and replace it with the `managed` key set to `true`.
2223
Set the `project` key in your `cloud` configuration to the value of your
23-
project ID, obtained via the sqlc.dev Dashboard.
24+
project ID, obtained via the [dashboard](https://dashboard.sqlc.dev).
2425

2526
```yaml
2627
version: '2'
@@ -37,7 +38,7 @@ sql:
3738
## Authentication
3839
3940
`sqlc` expects to find a valid auth token in the value of the `SQLC_AUTH_TOKEN`
40-
environment variable. You can create an auth token via the sqlc.dev Dashboard.
41+
environment variable. You can create an auth token via the [dashboard](https://dashboard.sqlc.dev).
4142

4243
```shell
4344
export SQLC_AUTH_TOKEN=sqlc_xxxxxxxx

docs/howto/upload.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
# Uploading projects
22

3+
```{note}
4+
Project uploads are powered by [sqlc Cloud](https://dashboard.sqlc.dev). Sign up for [free](https://dashboard.sqlc.dev) today.
5+
```
6+
37
*Added in v1.22.0*
48

59
Uploading an archive of your project ensures that future releases of sqlc do not
610
break your code. Similar to Rust's [crater](https://github.com/rust-lang/crater)
711
project, uploaded archives are tested against development releases of sqlc to
812
verify correctness.
913

10-
Interested in uploading projects? Sign up [here](https://docs.google.com/forms/d/e/1FAIpQLSdxoMzJ7rKkBpuez-KyBcPNyckYV-5iMR--FRB7WnhvAmEvKg/viewform) or send us an email
11-
at [hello@sqlc.dev](mailto:hello@sqlc.dev).
12-
1314
## Add configuration
1415

1516
After creating a project, add the project ID to your sqlc configuration file.
@@ -46,4 +47,4 @@ Once you're ready to upload, remove the `--dry-run` flag.
4647
sqlc upload
4748
```
4849

49-
By uploading your project, you're making sqlc more stable and reliable. Thanks!
50+
By uploading your project, you're making sqlc more stable and reliable. Thanks!

docs/reference/changelog.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,8 @@ When you turn on managed databases, `sqlc` will use your schema to create a
1818
template database that it can copy to make future runs of `sqlc vet` very
1919
performant.
2020

21-
This feature relies on configuration obtained via sqlc Cloud. If you're interested
22-
in early access you can [sign up here](https://docs.google.com/forms/d/e/1FAIpQLSdxoMzJ7rKkBpuez-KyBcPNyckYV-5iMR--FRB7WnhvAmEvKg/viewform)
23-
or send us an email at [hello@sqlc.dev](mailto:hello@sqlc.dev).
21+
This feature relies on configuration obtained via [sqlc
22+
Cloud](https://dashboard.sqlc.dev).
2423

2524
Read more in the [managed databases](../howto/managed-databases.md) documentation.
2625

0 commit comments

Comments
 (0)