Skip to content
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

Adds "root" object-store Commands to Read Me. #358

Closed
wants to merge 1 commit into from
Closed
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
42 changes: 42 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ A locally-focused workflow (local development, local execution) with the CLI may
- [`lean cloud live deploy`](#lean-cloud-live-deploy)
- [`lean cloud live liquidate`](#lean-cloud-live-liquidate)
- [`lean cloud live stop`](#lean-cloud-live-stop)
- [`lean cloud object-store`](#lean-cloud-object-store)
- [`lean cloud object-store delete`](#lean-cloud-object-store-delete)
- [`lean cloud object-store get`](#lean-cloud-object-store-get)
- [`lean cloud object-store list`](#lean-cloud-object-store-list)
Expand Down Expand Up @@ -106,6 +107,7 @@ A locally-focused workflow (local development, local execution) with the CLI may
- [`lean login`](#lean-login)
- [`lean logout`](#lean-logout)
- [`lean logs`](#lean-logs)
- [`lean object-store`](#lean-object-store)
- [`lean object-store delete`](#lean-object-store-delete)
- [`lean object-store get`](#lean-object-store-get)
- [`lean object-store list`](#lean-object-store-list)
Expand Down Expand Up @@ -384,6 +386,26 @@ Options:

_See code: [lean/commands/cloud/live/stop.py](lean/commands/cloud/live/stop.py)_

### `lean cloud object-store`

Interact with the Organization's Cloud Object Store.

```
Usage: lean cloud object-store [OPTIONS] COMMAND [ARGS]...

Interact with the Organization's Cloud Object Store.

Options:
--help Show this message and exit.

Commands:
delete Delete a value from the organization's cloud object store.
get Get a value from the organization's cloud object store.
list List all values for the given root key in the organization's...
ls Alias for 'list'
set Sets the data to the given key in the organization's cloud...
```

### `lean cloud object-store delete`

Delete a value from the organization's cloud object store.
Expand Down Expand Up @@ -1246,6 +1268,26 @@ Options:

_See code: [lean/commands/logs.py](lean/commands/logs.py)_

### `lean object-store`

Interact with the Organization's Local Object Store.

```
Usage: lean object-store [OPTIONS] COMMAND [ARGS]...

Interact with the Organization's Local Object Store.

Options:
--help Show this message and exit.

Commands:
delete Opens the local storage directory in the file explorer.
get Opens the local storage directory in the file explorer.
list Opens the local storage directory in the file explorer.
ls Alias for 'list'
set Opens the local storage directory in the file explorer.
```

### `lean object-store delete`

Opens the local storage directory in the file explorer.
Expand Down
Loading