Skip to content

Commit c88936f

Browse files
martin-helmichgithub-actions[bot]
authored andcommitted
chore: re-generate README
1 parent f48559d commit c88936f

2 files changed

Lines changed: 83 additions & 0 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ USAGE
108108
* [`mw autocomplete`](docs/autocomplete.md) - Display autocomplete installation instructions.
109109
* [`mw backup`](docs/backup.md) - Manage backups of your projects
110110
* [`mw context`](docs/context.md) - Save certain environment parameters for later use
111+
* [`mw contributor`](docs/contributor.md) - Deploy an extension manifest to the marketplace
111112
* [`mw conversation`](docs/conversation.md) - Manage your support cases
112113
* [`mw cronjob`](docs/cronjob.md) - Manage cronjobs of your projects
113114
* [`mw database`](docs/database.md) - Manage databases (like MySQL and Redis) in your projects

docs/contributor.md

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
`mw contributor`
2+
================
3+
4+
Deploy an extension manifest to the marketplace
5+
6+
* [`mw contributor extension deploy EXTENSION-MANIFEST`](#mw-contributor-extension-deploy-extension-manifest)
7+
* [`mw contributor extension publish EXTENSION-MANIFEST`](#mw-contributor-extension-publish-extension-manifest)
8+
* [`mw contributor extension withdraw EXTENSION-MANIFEST`](#mw-contributor-extension-withdraw-extension-manifest)
9+
10+
## `mw contributor extension deploy EXTENSION-MANIFEST`
11+
12+
Deploy an extension manifest to the marketplace
13+
14+
```
15+
USAGE
16+
$ mw contributor extension deploy EXTENSION-MANIFEST [-q] [--create]
17+
18+
ARGUMENTS
19+
EXTENSION-MANIFEST [default: ./mstudio-extension.yaml] file path to the extension manifest (as YAML or JSON)
20+
21+
FLAGS
22+
-q, --quiet suppress process output and only display a machine-readable summary.
23+
--[no-]create create the extension if it does not exist
24+
25+
DESCRIPTION
26+
Deploy an extension manifest to the marketplace
27+
28+
FLAG DESCRIPTIONS
29+
-q, --quiet suppress process output and only display a machine-readable summary.
30+
31+
This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
32+
scripts), you can use this flag to easily get the IDs of created resources for further processing.
33+
```
34+
35+
## `mw contributor extension publish EXTENSION-MANIFEST`
36+
37+
Publish an extension on the marketplace
38+
39+
```
40+
USAGE
41+
$ mw contributor extension publish EXTENSION-MANIFEST [-q]
42+
43+
ARGUMENTS
44+
EXTENSION-MANIFEST [default: ./mstudio-extension.yaml] file path to the extension manifest (as YAML or JSON)
45+
46+
FLAGS
47+
-q, --quiet suppress process output and only display a machine-readable summary.
48+
49+
DESCRIPTION
50+
Publish an extension on the marketplace
51+
52+
FLAG DESCRIPTIONS
53+
-q, --quiet suppress process output and only display a machine-readable summary.
54+
55+
This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
56+
scripts), you can use this flag to easily get the IDs of created resources for further processing.
57+
```
58+
59+
## `mw contributor extension withdraw EXTENSION-MANIFEST`
60+
61+
Withdraw an extension from the marketplace
62+
63+
```
64+
USAGE
65+
$ mw contributor extension withdraw EXTENSION-MANIFEST --reason <value> [-q]
66+
67+
ARGUMENTS
68+
EXTENSION-MANIFEST [default: ./mstudio-extension.yaml] file path to the extension manifest (as YAML or JSON)
69+
70+
FLAGS
71+
-q, --quiet suppress process output and only display a machine-readable summary.
72+
--reason=<value> (required) Reason for withdrawal
73+
74+
DESCRIPTION
75+
Withdraw an extension from the marketplace
76+
77+
FLAG DESCRIPTIONS
78+
-q, --quiet suppress process output and only display a machine-readable summary.
79+
80+
This flag controls if you want to see the process output or only a summary. When using mw non-interactively (e.g. in
81+
scripts), you can use this flag to easily get the IDs of created resources for further processing.
82+
```

0 commit comments

Comments
 (0)