@@ -39,32 +39,31 @@ USAGE
3939
4040## ` csdx app:create `
4141
42- Create new app in developer hub
42+ Create a new app in Developer Hub and optionally clone a boilerplate locally.
4343
4444```
4545USAGE
46- $ csdx app:create [--org <value>] [-y] [- n <value>] [--app-type stack|organization] [-c <value>] [-d <value>]
46+ $ csdx app:create [--org <value>] [-n <value>] [--app-type stack|organization] [-c <value>] [-d <value>]
4747
4848FLAGS
4949 -c, --config=<value> Path of the external config
5050 -d, --data-dir=<value> Current working directory.
5151 -n, --name=<value> Name of the app to be created
52- -y, --yes Use this flag to skip the confirmation.
5352 --app-type=<option> [default: stack] Type of App
5453 <options: stack|organization>
5554 --org=<value> Provide the organization UID
5655
5756DESCRIPTION
58- Create new app in developer hub
57+ Create a new app in Developer Hub and optionally clone a boilerplate locally.
5958
6059EXAMPLES
6160 $ csdx app:create
6261
63- $ csdx app:create --name App-1 --app-type stack --yes
62+ $ csdx app:create --name App-1 --app-type stack
6463
65- $ csdx app:create --name App-2 --app-type stack -d ./boilerplate --yes
64+ $ csdx app:create --name App-2 --app-type stack -d ./boilerplate
6665
67- $ csdx app:create --name App-3 --app-type organization --org <UID> -d ./boilerplate -c ./external-config.json --yes
66+ $ csdx app:create --name App-3 --app-type organization --org <UID> -d ./boilerplate -c ./external-config.json
6867```
6968
7069_ See code: [ src/commands/app/create.ts] ( https://github.com/contentstack/apps-cli/blob/v1.0.0/src/commands/app/create.ts ) _
@@ -75,10 +74,9 @@ Delete app from marketplace
7574
7675```
7776USAGE
78- $ csdx app:delete [--org <value>] [-y] [- -app-uid <value>]
77+ $ csdx app:delete [--org <value>] [--app-uid <value>]
7978
8079FLAGS
81- -y, --yes Use this flag to skip the confirmation.
8280 --app-uid=<value> Provide the app UID
8381 --org=<value> Provide the organization UID
8482
@@ -101,11 +99,10 @@ Get details of an app in developer hub
10199
102100```
103101USAGE
104- $ csdx app:get [--org <value>] [-y] [- -app-uid <value>] [--app-type stack|organization] [-d <value>]
102+ $ csdx app:get [--org <value>] [--app-uid <value>] [--app-type stack|organization] [-d <value>]
105103
106104FLAGS
107105 -d, --data-dir=<value> Current working directory.
108- -y, --yes Use this flag to skip the confirmation.
109106 --app-type=<option> [default: stack] Type of App
110107 <options: stack|organization>
111108 --app-uid=<value> Provide the app UID
@@ -132,10 +129,9 @@ Install an app from the marketplace
132129
133130```
134131USAGE
135- $ csdx app:install [--org <value>] [-y] [- -app-uid <value>] [--stack-api-key <value>]
132+ $ csdx app:install [--org <value>] [--app-uid <value>] [--stack-api-key <value>]
136133
137134FLAGS
138- -y, --yes Use this flag to skip the confirmation.
139135 --app-uid=<value> Provide the app UID
140136 --org=<value> Provide the organization UID
141137 --stack-api-key=<value> API key of the stack where the app is to be installed.
@@ -159,10 +155,9 @@ Uninstall an app
159155
160156```
161157USAGE
162- $ csdx app:uninstall [--org <value>] [-y] [- -app-uid <value>] [--installation-uid <value>]
158+ $ csdx app:uninstall [--org <value>] [--app-uid <value>] [--installation-uid <value>]
163159
164160FLAGS
165- -y, --yes Use this flag to skip the confirmation.
166161 --app-uid=<value> Provide the app UID
167162 --installation-uid=<value> Provide the installation ID of the app that needs to be uninstalled.
168163 --org=<value> Provide the organization UID
@@ -186,14 +181,10 @@ Update the existing app in developer hub
186181
187182```
188183USAGE
189- $ csdx app:update [--org <value>] [-y] [-- app-uid <value>] [--app- manifest <value>] [-c <value>] [-d <value>]
184+ $ csdx app:update [--org <value>] [-- app-manifest <value>]
190185
191186FLAGS
192- -c, --config=<value> Path of the external config
193- -d, --data-dir=<value> Current working directory.
194- -y, --yes Use this flag to skip the confirmation.
195187 --app-manifest=<value> Path to the app manifest.json file:
196- --app-uid=<value> Provide the app UID
197188 --org=<value> Provide the organization UID
198189
199190DESCRIPTION
@@ -202,11 +193,7 @@ DESCRIPTION
202193EXAMPLES
203194 $ csdx app:update
204195
205- $ csdx app:update --org <value> --app-uid <value> --app-manifest <value>
206-
207- $ csdx app:update --org <value> --app-uid <value> --app-manifest ./boilerplate/manifest.json
208-
209- $ csdx app:update --org <value> --app-uid <value> -d ./boilerplate -c ./external-config.json --yes
196+ $ csdx app:update --app-manifest ./boilerplate/manifest.json
210197```
211198
212199_ See code: [ src/commands/app/update.ts] ( https://github.com/contentstack/apps-cli/blob/v1.0.0/src/commands/app/update.ts ) _
0 commit comments