@@ -20,7 +20,7 @@ $ npm install -g @contentstack/apps-cli
20
20
$ csdx COMMAND
21
21
running command...
22
22
$ csdx (--version| -v)
23
- @contentstack/apps-cli/1.2.1 darwin-arm64 node-v18.20.2
23
+ @contentstack/apps-cli/1.3.0 darwin-arm64 node-v18.16.0
24
24
$ csdx --help [COMMAND]
25
25
USAGE
26
26
$ csdx COMMAND
@@ -67,22 +67,24 @@ EXAMPLES
67
67
$ csdx app:reinstall
68
68
```
69
69
70
- _ See code: [ src/commands/app/index.ts] ( https://github.com/contentstack/apps-cli/blob/v1.2.1 /src/commands/app/index.ts ) _
70
+ _ See code: [ src/commands/app/index.ts] ( https://github.com/contentstack/apps-cli/blob/v1.3.0 /src/commands/app/index.ts ) _
71
71
72
72
## ` csdx app:create `
73
73
74
74
Create a new app in Developer Hub and optionally clone a boilerplate locally.
75
75
76
76
```
77
77
USAGE
78
- $ csdx app:create [-n <value>] [--app-type stack|organization] [-c <value>] [-d <value>]
78
+ $ csdx app:create [-n <value>] [--app-type stack|organization] [-c <value>] [-d <value>] [--boilerplate
79
+ <value>]
79
80
80
81
FLAGS
81
82
-c, --config=<value> Path of the external config
82
83
-d, --data-dir=<value> Current working directory.
83
84
-n, --name=<value> [default: app-boilerplate] Name of the app to be created
84
85
--app-type=<option> [default: stack] Type of app
85
86
<options: stack|organization>
87
+ --boilerplate=<value> Choose a boilerplate from search list
86
88
87
89
DESCRIPTION
88
90
Create a new app in Developer Hub and optionally clone a boilerplate locally.
@@ -95,9 +97,11 @@ EXAMPLES
95
97
$ csdx app:create --name App-2 --app-type stack -d ./boilerplate
96
98
97
99
$ csdx app:create --name App-3 --app-type organization --org <UID> -d ./boilerplate -c ./external-config.json
100
+
101
+ $ csdx app:create --name App-4 --app-type organization --org <UID> --boilerplates <boilerplate-name>
98
102
```
99
103
100
- _ See code: [ src/commands/app/create.ts] ( https://github.com/contentstack/apps-cli/blob/v1.2.1 /src/commands/app/create.ts ) _
104
+ _ See code: [ src/commands/app/create.ts] ( https://github.com/contentstack/apps-cli/blob/v1.3.0 /src/commands/app/create.ts ) _
101
105
102
106
## ` csdx app:delete `
103
107
@@ -121,7 +125,7 @@ EXAMPLES
121
125
$ csdx app:delete --app-uid <value> --org <value> -d ./boilerplate
122
126
```
123
127
124
- _ See code: [ src/commands/app/delete.ts] ( https://github.com/contentstack/apps-cli/blob/v1.2.1 /src/commands/app/delete.ts ) _
128
+ _ See code: [ src/commands/app/delete.ts] ( https://github.com/contentstack/apps-cli/blob/v1.3.0 /src/commands/app/delete.ts ) _
125
129
126
130
## ` csdx app:deploy `
127
131
@@ -158,7 +162,7 @@ EXAMPLES
158
162
$ csdx app:deploy --org <UID> --app-uid <APP-UID-1> --hosting-type <Hosting with Launch> --launch-project <new> --config <config-path>
159
163
```
160
164
161
- _ See code: [ src/commands/app/deploy.ts] ( https://github.com/contentstack/apps-cli/blob/v1.2.1 /src/commands/app/deploy.ts ) _
165
+ _ See code: [ src/commands/app/deploy.ts] ( https://github.com/contentstack/apps-cli/blob/v1.3.0 /src/commands/app/deploy.ts ) _
162
166
163
167
## ` csdx app:get `
164
168
@@ -187,7 +191,7 @@ EXAMPLES
187
191
$ csdx app:get --org <value> --app-uid <value> --app-type organization
188
192
```
189
193
190
- _ See code: [ src/commands/app/get.ts] ( https://github.com/contentstack/apps-cli/blob/v1.2.1 /src/commands/app/get.ts ) _
194
+ _ See code: [ src/commands/app/get.ts] ( https://github.com/contentstack/apps-cli/blob/v1.3.0 /src/commands/app/get.ts ) _
191
195
192
196
## ` csdx app:install `
193
197
@@ -212,7 +216,7 @@ EXAMPLES
212
216
$ csdx app:install --org <UID> --app-uid <APP-UID-1> --stack-api-key <STACK-API-KEY-1>
213
217
```
214
218
215
- _ See code: [ src/commands/app/install.ts] ( https://github.com/contentstack/apps-cli/blob/v1.2.1 /src/commands/app/install.ts ) _
219
+ _ See code: [ src/commands/app/install.ts] ( https://github.com/contentstack/apps-cli/blob/v1.3.0 /src/commands/app/install.ts ) _
216
220
217
221
## ` csdx app:reinstall `
218
222
@@ -237,7 +241,7 @@ EXAMPLES
237
241
$ csdx app:reinstall --org <UID> --app-uid <APP-UID-1> --stack-api-key <STACK-API-KEY-1>
238
242
```
239
243
240
- _ See code: [ src/commands/app/reinstall.ts] ( https://github.com/contentstack/apps-cli/blob/v1.2.1 /src/commands/app/reinstall.ts ) _
244
+ _ See code: [ src/commands/app/reinstall.ts] ( https://github.com/contentstack/apps-cli/blob/v1.3.0 /src/commands/app/reinstall.ts ) _
241
245
242
246
## ` csdx app:uninstall `
243
247
@@ -263,7 +267,7 @@ EXAMPLES
263
267
$ csdx app:uninstall --org <UID> --app-uid <APP-UID-1> --installation-uid <INSTALLATION-UID-1>
264
268
```
265
269
266
- _ See code: [ src/commands/app/uninstall.ts] ( https://github.com/contentstack/apps-cli/blob/v1.2.1 /src/commands/app/uninstall.ts ) _
270
+ _ See code: [ src/commands/app/uninstall.ts] ( https://github.com/contentstack/apps-cli/blob/v1.3.0 /src/commands/app/uninstall.ts ) _
267
271
268
272
## ` csdx app:update `
269
273
@@ -285,5 +289,5 @@ EXAMPLES
285
289
$ csdx app:update --app-manifest ./boilerplate/manifest.json
286
290
```
287
291
288
- _ See code: [ src/commands/app/update.ts] ( https://github.com/contentstack/apps-cli/blob/v1.2.1 /src/commands/app/update.ts ) _
292
+ _ See code: [ src/commands/app/update.ts] ( https://github.com/contentstack/apps-cli/blob/v1.3.0 /src/commands/app/update.ts ) _
289
293
<!-- commandsstop -->
0 commit comments