upload
- Uploading projectsProject uploads are powered by [sqlc Cloud](https://dashboard.sqlc.dev). Sign up for [free](https://dashboard.sqlc.dev) today.
Added in v1.22.0
Uploading an archive of your project ensures that future releases of sqlc do not break your code. Similar to Rust's crater project, uploaded archives are tested against development releases of sqlc to verify correctness.
After creating a project, add the project ID to your sqlc configuration file.
version: "2"
cloud:
project: "<PROJECT_ID>"
You'll also need to create an auth token and make it available via the
SQLC_AUTH_TOKEN
environment variable.
export SQLC_AUTH_TOKEN=sqlc_xxxxxxxx
You can see what's included when uploading your project by using using the
--dry-run
flag:
sqlc upload --dry-run
The output is the request sqlc
would have sent without the --dry-run
flag.
Once you're ready to upload, remove the --dry-run
flag.
sqlc upload
By uploading your project, you're making sqlc more stable and reliable. Thanks!