@corellium/corellium-cli 1.0.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/README.md +16 -26
  2. 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
- git clone git@gitlab01.corellium.co:middleware/corellium-cli.git
5
- cd corellium-cli
6
- npm install
7
- npm link
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.ci-4.corellium.co --admin-user-name=admin --admin-password=password --user-password=userPassword --user-email=john.doe@gmail.com --customer-name=john01 --plan=individual-cloud-3-device --trial-duration=365
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.ci-4.corellium.co
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
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@corellium/corellium-cli",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Corellium CLI Tool",
5
5
  "scripts": {
6
6
  "corellium-cli": "node index.js",