neon-db-cli

command module
v0.0.0-...-95345c3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 17, 2023 License: MIT Imports: 3 Imported by: 0

README


Neon Database CLI

CLI tool to interact with the Neon Database APIs

About

The NeonDB CLI Tool is a command-line interface that enables interaction with the Neon Database APIs.

Neon is a fully managed serverless PostgreSQL solution. Neon offers modern developer features such as serverless computing, branching, bottomless storage, and more. Learn more about Neon here.

The Neon API allows you to programmatically manage your Neon account and its objects, including:

  • API keys
  • Projects
  • Branches
  • Compute endpoints
  • Databases
  • Roles

To authenticate with the Neon API, you need to include an API key token in the Authorization header of your API request.

The Neon API uses Bearer Token Authentication. Therefore, the Authorization header should be formatted as follows:

  • H 'Authorization: Bearer $NEON_API_KEY'

For example:

curl 'https://console.neon.tech/api/v2/projects' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer $NEON_API_KEY' \
  -H 'Content-Type: application/json'

To try an API request in the browser from this page, click the Try It button on any Neon API endpoint, and enter the token in the Bearer prompt. You can select the endpoint from the sidebar.

The Get a list of projects endpoint is a simple one to try as it only requires an API key token.

A Neon API key is a randomly-generated 64-bit token that remains valid until it is revoked.

To create an API key, follow these steps:

  1. Go to the Developer Settings page in the Neon Console.
  2. Provide a name for the API key.
  3. Click Create and copy the generated token.

Store the token in a secure location. Once you leave the Developer Settings page in the Neon Console, the token will not be visible or copyable.

For more information on managing Neon API keys, refer to the Manage API keys section in the Neon documentation.

The project's folder structure is as follows:

.
├── .env
├── LICENSE
├── Makefile
├── README.md
├── apis
│   ├── api_keys
│   │   └── api_keys.go
│   └── projects
│       └── projects.go
├── assets
│   └── neon-db-cli.svg
├── cmd
│   └── cmd.go
├── go.mod
├── go.sum
├── main.go
└── utils
    └── utils.go

Usage

  1. Follow the instructions here to set up a project in Neon.
  2. Configure the database connection details in a .env file.
  3. Run the command make all to install all the dependencies, remove the previous binary, and build a new binary named neondb.
  4. Use the command ./neondb to run the CLI tool.

When we run ./neondb, we get the following output:

➜  neon-db-cli git:(main) ✗ ./neondb
Neon Database CLI

Usage:
  neondb [command]

Available Commands:
  completion   Generate the autocompletion script for the specified shell
  createapikey Create a new API key for your Neon account
  help         Help about any command
  listapikeys  List API keys for your Neon account
  revokeapikey Revoke an API key for your Neon account

Flags:
  -h, --help   help for neondb

Use "neondb [command] --help" for more information about a command.

Instructions for setting environment variables

To run the project locally, create a .env file and add the following environment variables:

  • API_KEY: API key for your Neon account.

You can find your API key on the Developer Settings page.

Demonstration

Before the demonstration, I set up the new project and configured the database connection details in a .env file.

When I run the available commands, I get the following output:

completion
➜  neon-db-cli git:(main) ✗ ./neondb completion
Generate the autocompletion script for neondb for the specified shell.
See each sub-command's help for details on how to use the generated script.

Usage:
  neondb completion [command]

Available Commands:
  bash        Generate the autocompletion script for bash
  fish        Generate the autocompletion script for fish
  powershell  Generate the autocompletion script for powershell
  zsh         Generate the autocompletion script for zsh

Flags:
  -h, --help   help for completion

Use "neondb completion [command] --help" for more information about a command.
createapikey
➜  neon-db-cli git:(main) ✗ ./neondb createapikey --keyname=key2
{"id":000002,"key":"XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"}
help
➜  neon-db-cli git:(main) ✗ ./neondb help
Neon Database CLI

Usage:
  neondb [command]

Available Commands:
  completion   Generate the autocompletion script for the specified shell
  createapikey Create a new API key for your Neon account
  help         Help about any command
  listapikeys  List API keys for your Neon account
  revokeapikey Revoke an API key for your Neon account

Flags:
  -h, --help   help for neondb

Use "neondb [command] --help" for more information about a command.
listapikeys
➜  neon-db-cli git:(main) ✗ ./neondb listapikeys
[{"id":000002,"name":"key2","created_at":"2023-05-17T07:42:45Z","last_used_at":null,"last_used_from_addr":""},{"id":000001,"name":"key1","created_at":"2023-05-16T19:12:11Z","last_used_at":"2023-05-17T07:43:51Z","last_used_from_addr":"49.37.25.219"}]
revokeapikey
➜  neon-db-cli git:(main) ✗ ./neondb revokeapikey --keyid=000002
{"id":000002,"name":"key2","revoked":true,"last_used_at":null,"last_used_from_addr":""}

License

MIT

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
apis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL