@corellium/corellium-cli 1.0.1 → 1.0.2

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 +15 -18
  2. package/package.json +1 -1
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@corellium/corellium-cli",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Corellium CLI Tool",
5
5
  "scripts": {
6
6
  "corellium-cli": "node index.js",