Skip to content

docs: Add a sidebar link for push, add Go plugin link #3023

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
Nov 29, 2023
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
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ code ever again.
:hidden:

howto/generate.md
howto/push.md
howto/verify.md
howto/vet.md

Expand Down
7 changes: 4 additions & 3 deletions docs/reference/cli.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
# CLI

```
```sh
Usage:
sqlc [command]

Available Commands:
compile Statically check SQL for syntax and type errors
completion Generate the autocompletion script for the specified shell
createdb Create an ephemeral database
diff Compare the generated files to the existing files
generate Generate Go code from SQL
generate Generate source code from SQL
help Help about any command
init Create an empty sqlc.yaml settings file
push Push schema, queries, and configuration for this project
push Push the schema, queries, and configuration for this project
verify Verify schema, queries, and configuration for this project
version Print the sqlc version number
vet Vet examines queries
Expand Down
2 changes: 2 additions & 0 deletions docs/reference/language-support.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Database and language support
Language Plugin MySQL PostgreSQL SQLite
======== =================== ============ ============ ===============
Go (built-in) Stable Stable Beta
Go `sqlc-gen-go`_ Stable Stable Beta
Kotlin `sqlc-gen-kotlin`_ Beta Beta Not implemented
Python `sqlc-gen-python`_ Beta Beta Not implemented
======== =================== ============ ============ ===============
Expand All @@ -18,6 +19,7 @@ Language Plugin MySQL PostgreSQL SQLite
F# `kaashyapan/sqlc-gen-fsharp`_ Not implemented Beta Beta
======== ============================== =============== ============ ===============

.. _sqlc-gen-go: https://github.com/sqlc-dev/sqlc-gen-go
.. _kaashyapan/sqlc-gen-fsharp: https://github.com/kaashyapan/sqlc-gen-fsharp
.. _sqlc-gen-kotlin: https://github.com/sqlc-dev/sqlc-gen-kotlin
.. _sqlc-gen-python: https://github.com/sqlc-dev/sqlc-gen-python
Expand Down