@corellium/corellium-cli 1.0.1 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -14,23 +14,20 @@ npm install -g @corellium/cli
14
14
  2. Install dependencies: `npm install`
15
15
  3. Link with `npm link`
16
16
 
17
- *Note*: if you are running it locally create `.env` file and put the folliwing line there `NODE_TLS_REJECT_UNAUTHORIZED=0`
17
+ *Note*: if you are running it locally create `.env` file and put the following line there `NODE_TLS_REJECT_UNAUTHORIZED=0`
18
18
 
19
- ## Create subscriber Invite command
20
- **Usage**
21
- ```
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
23
- ```
24
- ```
25
- Options:
26
- --help Show help [boolean]
27
- --version Show version number [boolean]
28
- --endpoint Server endpoint e.g. https://app.corellium.com
29
- --admin-user-name Admin user
30
- --admin-password Admin password
31
- --user-email User email
32
- --user-password User password
33
- --customer-name Customer name. Use company name, unless customer is an individual.
34
- --enterprise-domain Enterprise Domain name [default: ""]
35
- --trial-duration Trial duration. Default 7 days [number] [default: 7]
19
+ ## Example
20
+
21
+ ```bash
22
+ # Enter your details here first
23
+ $projectId="....."
24
+ $apiToken="......"
25
+
26
+ # Let there be virtual
27
+ corellium login --apitoken $apiToken --endpoint https://app.corellium.com
28
+ instanceId=$(corellium instance create iphone6 12.5.6 $projectId true)
29
+ corellium agent apps --project $projectId --instance $instanceId
30
+ corellium agent files --project $projectId --instance $instanceId
31
+ corellium instance stop $instanceId true
32
+ corellium instance delete $instanceId
36
33
  ```
package/docs/OVERVIEW.md CHANGED
@@ -12,7 +12,7 @@
12
12
  - [Image](#image)
13
13
 
14
14
  ## Introduction
15
- Corellium CLI is a command-line collection of tools necessary for managing Charm SDK extensions.
15
+ Corellium CLI is a command-line collection of tools necessary for managing extensions on certain account types.
16
16
 
17
17
  ## Quick start
18
18
  ```
@@ -80,7 +80,7 @@ Logout succesful, deleted profile at /Users/user/.corellium/profile.json
80
80
  Logout will remove the profile.json and leave the .corellium folder in place.
81
81
 
82
82
  ## Extension
83
- Commands exist for deleting, listing, and loading Charm SDK extensions.
83
+ Commands exist for deleting, listing, and loading extensions.
84
84
 
85
85
  `corellium extension load <files...>`
86
86
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@corellium/corellium-cli",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Corellium CLI Tool",
5
5
  "scripts": {
6
6
  "corellium-cli": "node index.js",