File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed
Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ The CLI supports workspace configuration to avoid repeatedly specifying the proj
5050You can initialize a workspace configuration with:
5151
5252``` sh
53- stl init --project your-project-name
53+ stl workspace init --project your-project-name
5454```
5555
5656If you don't provide the ` --project ` flag, you'll be prompted to enter a project name.
Original file line number Diff line number Diff line change @@ -10,6 +10,22 @@ var Command = cli.Command{
1010 Name : "stl" ,
1111 Usage : "CLI for the stainless API" ,
1212 Commands : []* cli.Command {
13+ {
14+ Name : "auth" ,
15+ Commands : []* cli.Command {
16+ & authLogin ,
17+ & authLogout ,
18+ & authStatus ,
19+ },
20+ },
21+
22+ {
23+ Name : "workspace" ,
24+ Commands : []* cli.Command {
25+ & initWorkspaceCommand ,
26+ },
27+ },
28+
1329 {
1430 Name : "projects" ,
1531 Commands : []* cli.Command {
You can’t perform that action at this time.
0 commit comments