Minor fixes

This commit is contained in:
Bruno Škvorc 2019-02-10 22:43:20 +01:00 committed by GitHub
parent d968103bbd
commit 1f67340820
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 ## Install
clone the repo via git: 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`. And then install the dependencies with `yarn`.
```
$ cd status-x ```sh
$ yarn cd status-x
yarn
``` ```
To develop: To develop:
```
$ yarn run start ```sh
$ yarn run lint yarn run start
yarn run lint
```` ````
To run: To run:
```
```sh
yarn build
node dist/index.js node dist/index.js
``` ```