Skip to content

Commit 5030792

Browse files
alexisbouchezgithub-actions[bot]
authored andcommitted
Update docs content from https://github.com/depot/app
1 parent 7dd98d4 commit 5030792

File tree

2 files changed

+66
-2
lines changed

2 files changed

+66
-2
lines changed

content/cli/reference.mdx

Lines changed: 62 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,10 +372,17 @@ depot init
372372

373373
Authenticates with your Depot account, automatically creating and storing a user token on your local machine.
374374

375-
**Example**
375+
**Examples**
376376

377377
```shell
378-
depot login
378+
# Login and select organization interactively
379+
$ depot login
380+
381+
# Login and specify organization ID
382+
$ depot login --org-id 1234567890
383+
384+
# Clear existing token before logging in
385+
$ depot login --clear
379386
```
380387

381388
### `depot logout`
@@ -535,3 +542,56 @@ Additional flags that can be used with this command.
535542
| `tag` | Optional tags to apply to the image |
536543
| `token` | Depot token |
537544
{/* <!-- prettier-ignore-end --> */}
545+
546+
### `depot org`
547+
548+
Manage organizations you have access to in Depot. The `org` command group provides tools to list, switch, and show your current organization context.
549+
550+
#### `depot org list`
551+
552+
List organizations that you can access. By default, this command opens an interactive table. You can also output the list in `json` or `csv` format for scripting.
553+
554+
**Usage**
555+
556+
```shell
557+
depot org list
558+
```
559+
560+
#### `depot org switch`
561+
562+
Set the current organization in your global Depot settings. This affects which organization is used by default for commands that support organization context.
563+
564+
**Usage**
565+
566+
```shell
567+
depot org switch [org-id]
568+
```
569+
570+
If you do not provide an `org-id`, you will be prompted to select one interactively.
571+
572+
**Examples**
573+
574+
```shell
575+
# Switch to a specific organization by ID
576+
$ depot org switch 1234567890
577+
578+
# Select organization interactively
579+
$ depot org switch
580+
```
581+
582+
#### `depot org show`
583+
584+
Show the current organization set in your global Depot settings.
585+
586+
**Usage**
587+
588+
```shell
589+
depot org show
590+
```
591+
592+
**Example**
593+
594+
```shell
595+
$ depot org show
596+
1234567890
597+
```

content/overview/index.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,7 @@ Teams using Depot see dramatic improvements across their entire development work
6464
- [Bastion cut build times by 6x while halving GitHub Actions spending](/customers/bastion): Achieved 6x faster Rust Docker builds, 3x faster Go builds, and 2x increase in PR throughput. Their CTO Jameel Al-Aziz noted: "Depot seems to have broken that formula. They said, hey, we'll make it both cheaper and faster."
6565

6666
Whether you're building a single application or managing infrastructure for hundreds of projects, Depot scales with your needs while maintaining the performance that keeps developers in flow state rather than waiting for builds to complete.
67+
68+
## AI Documentation (llms.txt)
69+
70+
We provide [`llms.txt`](/llms.txt) for quick navigation and [`llms-all.txt`](/llms-all.txt) for complete documentation access, both formatted in Markdown to help AI assistants better understand Depot's capabilities.

0 commit comments

Comments
 (0)