Thanks to visit codestin.com
Credit goes to github.com

Skip to content
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
2 changes: 1 addition & 1 deletion docs/admin/infrastructure/scale-utility.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ wish to clean up all workspaces, you can run the following command:
```sh
coder exp scaletest cleanup \
--cleanup-job-timeout 2h \
--cleanup-timeout 15min
--cleanup-timeout 15m
```

This will delete all workspaces and users with the prefix `scaletest-`.
Expand Down
5 changes: 3 additions & 2 deletions docs/admin/integrations/dx-data-cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ If your organization already uses the Coder-DX integration, you can find a list

### CLI

Use `users list` to export the list of users to a CSV file:
Use `users list` with `jq` to export the list of users to a CSV file:

```sh
coder users list > users.csv
coder users list --output json | \
jq -r '["username","email","created_at","status"], (.[] | [.username, .email, .created_at, .status]) | @csv' > users.csv
```

Visit the [users list](../../reference/cli/users_list.md) documentation for more options.
Expand Down
5 changes: 3 additions & 2 deletions docs/admin/users/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -230,10 +230,11 @@ You can use the Coder CLI or API to retrieve your list of users.

### CLI

Use `users list` to export the list of users to a CSV file:
Use `users list` with `jq` to export the list of users to a CSV file:

```sh
coder users list > users.csv
coder users list --output json | \
jq -r '["username","email","created_at","status"], (.[] | [.username, .email, .created_at, .status]) | @csv' > users.csv
```

Visit the [users list](../../reference/cli/users_list.md) documentation for more options.
Expand Down
5 changes: 1 addition & 4 deletions docs/ai-coder/github-to-tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,6 @@ You must also set `coder-template-name` as part of this. The GHA example has thi
```sh
# List all templates in your organization
coder templates list

# List templates in a specific organization
coder templates list --org your-org-name
```

You can also choose to modify the other [input parameters](https://github.com/coder/create-task-action?tab=readme-ov-file#inputs) to better fit your desired workflow.
Expand Down Expand Up @@ -229,7 +226,7 @@ Generate a new token with these permissions at `https://<your-coder-url>/deploym

**Solution:**

1. Verify the template name using: `coder templates list --org your-org-name`
1. Verify the template name using: `coder templates list`
1. Update the `coder-template-name` input in your workflow file to match exactly, or input secret or variable saved in GitHub
1. Ensure the template exists in the organization specified by `coder-organization`

Expand Down
2 changes: 1 addition & 1 deletion docs/user-guides/workspace-access/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ services or preview environments.

You can also [share ports](./port-forwarding.md#sharing-ports) with other users,
or [port-forward](./port-forwarding.md#the-coder-port-forward-command) through
the CLI with `coder port forward`. Read more in the
the CLI with `coder port-forward`. Read more in the
[docs on workspace ports](./port-forwarding.md).

![Open Ports window](../../images/networking/listeningports.png)
Expand Down
Loading