*`--ip <device-ip>` to specify your device's IP address.
#### 1. Adding a DApp
`status-dev-cli add-dapp [dapp]`
*`dapp` — JSON containing DApp information. It is not required if your DApp contains `package.json` file. Otherwise, this map should contain `whisper-identity`, `dapp-url` and `name` fields (see the example in **Scenario** section)
You can additionally specify `--dapp-port <port>` if your DApp uses port other than 8080 and you don't specify a `dapp`JSON.
#### 2. Removing a DApp
`status-dev-cli remove-dapp [dapp]`
*`dapp` — JSON containing `whisper-identity` field. It is not required if your DApp contains `package.json` file.
#### 3. Refreshing a DApp automatically
`status-dev-cli watch-dapp [dappDir] [dapp]`
*`dapp_dir` —dir that should be observed. Not required;
*`dapp` — JSON containing `whisper-identity` field. It is not required if your DApp contains `package.json` file.
1. Add a DApp to Status by executing `status-dev-cli add-dapp '{"whisper-identity": "dapp-test", "dapp-url": "http://localhost:8080/", "name": "My Dapp"}'`;
3. Optional: Execute `status-dev-cli watch-dapp . '{"whisper-identity": "dapp-test"}'` to start automatically refreshing your DApp in Status browser when you change the DApp's code.