@corellium/corellium-cli 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -26
- package/package.json +1 -1
package/README.md
CHANGED
@@ -1,46 +1,36 @@
|
|
1
1
|
# corellium-cli
|
2
2
|
|
3
|
+
Corellium CLI is a command line interface for Corellium's API. It allows you to manage your projects, devices and more from the command line. It is written in Node.js and uses the Corellium [Client API](https://www.npmjs.com/package/@corellium/client-api).
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
```bash
|
8
|
+
npm install -g @corellium/cli
|
3
9
|
```
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
10
|
+
|
11
|
+
## Development
|
12
|
+
|
13
|
+
1. Clone the repo
|
14
|
+
2. Install dependencies: `npm install`
|
15
|
+
3. Link with `npm link`
|
9
16
|
|
10
17
|
*Note*: if you are running it locally create `.env` file and put the folliwing line there `NODE_TLS_REJECT_UNAUTHORIZED=0`
|
11
18
|
|
12
19
|
## Create subscriber Invite command
|
13
20
|
**Usage**
|
14
21
|
```
|
15
|
-
corellium signup --endpoint=https://app.
|
22
|
+
corellium signup --endpoint=https://app.corellium.com --admin-user-name=admin --admin-password=password --user-password=userPassword --user-email=john.doe@gmail.com --customer-name=john01 --trial-duration=365
|
16
23
|
```
|
17
24
|
```
|
18
25
|
Options:
|
19
26
|
--help Show help [boolean]
|
20
27
|
--version Show version number [boolean]
|
21
|
-
--endpoint Server endpoint e.g. https://app.
|
28
|
+
--endpoint Server endpoint e.g. https://app.corellium.com
|
22
29
|
--admin-user-name Admin user
|
23
30
|
--admin-password Admin password
|
24
31
|
--user-email User email
|
25
32
|
--user-password User password
|
26
|
-
--customer-name Customer name. Use company name, unless customer is an individual.
|
27
|
-
--plan Plan [choices: "individual-cloud-1-device", "individual-cloud-3-device", "individual-cloud-6-device", "enterprise-cloud-6-core", "enterprise-cloud-12-core", "enterprise-cloud-24-core", "individual-cloud-us
|
28
|
-
age-based", "enterprise-cloud-usage-based"] [default: "individual-cloud-3-device"]
|
33
|
+
--customer-name Customer name. Use company name, unless customer is an individual.
|
29
34
|
--enterprise-domain Enterprise Domain name [default: ""]
|
30
35
|
--trial-duration Trial duration. Default 7 days [number] [default: 7]
|
31
|
-
```
|
32
|
-
|
33
|
-
## Login
|
34
|
-
```
|
35
|
-
corellium login
|
36
|
-
```
|
37
|
-
|
38
|
-
## Upload extension
|
39
|
-
```
|
40
|
-
corellium upload extension extension.zip
|
41
|
-
```
|
42
|
-
|
43
|
-
## Upload firmware
|
44
|
-
```
|
45
|
-
corellium upload firmware firmware.zip
|
46
|
-
```
|
36
|
+
```
|