@@ -39,32 +39,31 @@ USAGE
39
39
40
40
## ` csdx app:create `
41
41
42
- Create new app in developer hub
42
+ Create a new app in Developer Hub and optionally clone a boilerplate locally.
43
43
44
44
```
45
45
USAGE
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>]
47
47
48
48
FLAGS
49
49
-c, --config=<value> Path of the external config
50
50
-d, --data-dir=<value> Current working directory.
51
51
-n, --name=<value> Name of the app to be created
52
- -y, --yes Use this flag to skip the confirmation.
53
52
--app-type=<option> [default: stack] Type of App
54
53
<options: stack|organization>
55
54
--org=<value> Provide the organization UID
56
55
57
56
DESCRIPTION
58
- Create new app in developer hub
57
+ Create a new app in Developer Hub and optionally clone a boilerplate locally.
59
58
60
59
EXAMPLES
61
60
$ csdx app:create
62
61
63
- $ csdx app:create --name App-1 --app-type stack --yes
62
+ $ csdx app:create --name App-1 --app-type stack
64
63
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
66
65
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
68
67
```
69
68
70
69
_ 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
75
74
76
75
```
77
76
USAGE
78
- $ csdx app:delete [--org <value>] [-y] [- -app-uid <value>]
77
+ $ csdx app:delete [--org <value>] [--app-uid <value>]
79
78
80
79
FLAGS
81
- -y, --yes Use this flag to skip the confirmation.
82
80
--app-uid=<value> Provide the app UID
83
81
--org=<value> Provide the organization UID
84
82
@@ -101,11 +99,10 @@ Get details of an app in developer hub
101
99
102
100
```
103
101
USAGE
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>]
105
103
106
104
FLAGS
107
105
-d, --data-dir=<value> Current working directory.
108
- -y, --yes Use this flag to skip the confirmation.
109
106
--app-type=<option> [default: stack] Type of App
110
107
<options: stack|organization>
111
108
--app-uid=<value> Provide the app UID
@@ -132,10 +129,9 @@ Install an app from the marketplace
132
129
133
130
```
134
131
USAGE
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>]
136
133
137
134
FLAGS
138
- -y, --yes Use this flag to skip the confirmation.
139
135
--app-uid=<value> Provide the app UID
140
136
--org=<value> Provide the organization UID
141
137
--stack-api-key=<value> API key of the stack where the app is to be installed.
@@ -159,10 +155,9 @@ Uninstall an app
159
155
160
156
```
161
157
USAGE
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>]
163
159
164
160
FLAGS
165
- -y, --yes Use this flag to skip the confirmation.
166
161
--app-uid=<value> Provide the app UID
167
162
--installation-uid=<value> Provide the installation ID of the app that needs to be uninstalled.
168
163
--org=<value> Provide the organization UID
@@ -186,14 +181,10 @@ Update the existing app in developer hub
186
181
187
182
```
188
183
USAGE
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>]
190
185
191
186
FLAGS
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.
195
187
--app-manifest=<value> Path to the app manifest.json file:
196
- --app-uid=<value> Provide the app UID
197
188
--org=<value> Provide the organization UID
198
189
199
190
DESCRIPTION
@@ -202,11 +193,7 @@ DESCRIPTION
202
193
EXAMPLES
203
194
$ csdx app:update
204
195
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
210
197
```
211
198
212
199
_ 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