Merge pull request #4 from Swader/patch-1

Minor fixes
This commit is contained in:
Richard Ramos 2019-04-09 10:58:20 -04:00 committed by GitHub
commit 0e35e3f7ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 9 deletions

View File

@ -11,23 +11,28 @@ Command line chat client for status
## Install
clone the repo via git:
```
$ git clone https://github.com/status-im/status-x.git
```sh
git clone https://github.com/status-im/status-x.git
```
And then install the dependencies with `yarn`.
```
$ cd status-x
$ yarn
```sh
cd status-x
yarn
```
To develop:
```
$ yarn run start
$ yarn run lint
```sh
yarn run start
yarn run lint
````
To run:
```
```sh
yarn build
node dist/index.js
```