Skip to content

Commit 5931d7d

Browse files
committed
Update CLI documentation
1 parent e08a618 commit 5931d7d

22 files changed

+196
-16
lines changed

docs/cli/cozy-stack.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,18 @@ cozy-stack [flags]
2727

2828
### SEE ALSO
2929

30-
* [cozy-stack apps](cozy-stack_apps.md) - Interact with the cozy applications
30+
* [cozy-stack apps](cozy-stack_apps.md) - Interact with the applications
3131
* [cozy-stack bug](cozy-stack_bug.md) - start a bug report
3232
* [cozy-stack completion](cozy-stack_completion.md) - Output shell completion code for the specified shell
3333
* [cozy-stack config](cozy-stack_config.md) - Show and manage configuration elements
3434
* [cozy-stack doc](cozy-stack_doc.md) - Print the documentation
3535
* [cozy-stack files](cozy-stack_files.md) - Interact with the cozy filesystem
3636
* [cozy-stack fixer](cozy-stack_fixer.md) - A set of tools to fix issues or migrate content for retro-compatibility.
3737
* [cozy-stack instances](cozy-stack_instances.md) - Manage instances of a stack
38-
* [cozy-stack konnectors](cozy-stack_konnectors.md) - Interact with the cozy applications
38+
* [cozy-stack konnectors](cozy-stack_konnectors.md) - Interact with the konnectors
3939
* [cozy-stack serve](cozy-stack_serve.md) - Starts the stack and listens for HTTP calls
4040
* [cozy-stack settings](cozy-stack_settings.md) - Display and update settings
4141
* [cozy-stack status](cozy-stack_status.md) - Check if the HTTP server is running
42+
* [cozy-stack triggers](cozy-stack_triggers.md) - Interact with the triggers
4243
* [cozy-stack version](cozy-stack_version.md) - Print the version number
4344

docs/cli/cozy-stack_apps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## cozy-stack apps
22

3-
Interact with the cozy applications
3+
Interact with the applications
44

55
### Synopsis
66

docs/cli/cozy-stack_apps_install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ $ cozy-stack apps install --domain cozy.tools:8080 drive 'git://github.com/cozy/
3939

4040
### SEE ALSO
4141

42-
* [cozy-stack apps](cozy-stack_apps.md) - Interact with the cozy applications
42+
* [cozy-stack apps](cozy-stack_apps.md) - Interact with the applications
4343

docs/cli/cozy-stack_apps_ls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ cozy-stack apps ls [flags]
3131

3232
### SEE ALSO
3333

34-
* [cozy-stack apps](cozy-stack_apps.md) - Interact with the cozy applications
34+
* [cozy-stack apps](cozy-stack_apps.md) - Interact with the applications
3535

docs/cli/cozy-stack_apps_show.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ cozy-stack apps show [slug] [flags]
3131

3232
### SEE ALSO
3333

34-
* [cozy-stack apps](cozy-stack_apps.md) - Interact with the cozy applications
34+
* [cozy-stack apps](cozy-stack_apps.md) - Interact with the applications
3535

docs/cli/cozy-stack_apps_uninstall.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ cozy-stack apps uninstall [slug] [flags]
3131

3232
### SEE ALSO
3333

34-
* [cozy-stack apps](cozy-stack_apps.md) - Interact with the cozy applications
34+
* [cozy-stack apps](cozy-stack_apps.md) - Interact with the applications
3535

docs/cli/cozy-stack_apps_update.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ cozy-stack apps update [slug] [sourceurl] [flags]
3131

3232
### SEE ALSO
3333

34-
* [cozy-stack apps](cozy-stack_apps.md) - Interact with the cozy applications
34+
* [cozy-stack apps](cozy-stack_apps.md) - Interact with the applications
3535

docs/cli/cozy-stack_config.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ cozy-stack config allows to print and generate some parts of the configuration
2828
### SEE ALSO
2929

3030
* [cozy-stack](cozy-stack.md) - cozy-stack is the main command
31+
* [cozy-stack config decrypt-creds](cozy-stack_config_decrypt-creds.md) - Decrypt the given credentials cipher text with the specified decryption keyfile.
3132
* [cozy-stack config gen-keys](cozy-stack_config_gen-keys.md) - Generate an key pair for encryption and decryption of credentials
3233
* [cozy-stack config passwd](cozy-stack_config_passwd.md) - Generate an admin passphrase
3334
* [cozy-stack config print](cozy-stack_config_print.md) - Display the configuration
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
## cozy-stack config decrypt-creds
2+
3+
Decrypt the given credentials cipher text with the specified decryption keyfile.
4+
5+
### Synopsis
6+
7+
Decrypt the given credentials cipher text with the specified decryption keyfile.
8+
9+
```
10+
cozy-stack config decrypt-creds [keyfile] [ciphertext] [flags]
11+
```
12+
13+
### Options
14+
15+
```
16+
-h, --help help for decrypt-creds
17+
```
18+
19+
### Options inherited from parent commands
20+
21+
```
22+
--admin-host string administration server host (default "localhost")
23+
--admin-port int administration server port (default 6060)
24+
--client-use-https if set the client will use https to communicate with the server
25+
-c, --config string configuration file (default "$HOME/.cozy.yaml")
26+
--host string server host (default "localhost")
27+
-p, --port int server port (default 8080)
28+
```
29+
30+
### SEE ALSO
31+
32+
* [cozy-stack config](cozy-stack_config.md) - Show and manage configuration elements
33+

docs/cli/cozy-stack_instances.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ cozy-stack instances [command] [flags]
5353
* [cozy-stack instances show](cozy-stack_instances_show.md) - Show the instance of the specified domain
5454
* [cozy-stack instances token-app](cozy-stack_instances_token-app.md) - Generate a new application token
5555
* [cozy-stack instances token-cli](cozy-stack_instances_token-cli.md) - Generate a new CLI access token (global access)
56+
* [cozy-stack instances token-konnector](cozy-stack_instances_token-konnector.md) - Generate a new konnector token
5657
* [cozy-stack instances token-oauth](cozy-stack_instances_token-oauth.md) - Generate a new OAuth access token
5758
* [cozy-stack instances update](cozy-stack_instances_update.md) - Start the updates for the specified domain instance.
5859

0 commit comments

Comments
 (0)