Skip to content
This repository has been archived by the owner on Feb 12, 2021. It is now read-only.

Commit

Permalink
docs: Readme instructions (#46)
Browse files Browse the repository at this point in the history
* Readme instructions

* Update README.md
  • Loading branch information
alexvansande authored and PhilippLgh committed Feb 8, 2019
1 parent 3a71952 commit b7f3939
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,30 @@ This is the hosting application for [Mist UI](https://github.com/ethereum/mist-u
This project ensures that the user can update, configure and run the Mist UI web app and client binaries such as geth.
Moreover this project can be bundled with Mist UI and create distributable installers that can be found under 'releases'.

The app can be started with `yarn start:dev` for `yarn start:prod` for developer or production mode.
### Quick Start

First we need to install less and Mist UI:

```
npm install -g less
git clone https://github.com/ethereum/mist-ui.git
cd mist-ui
yarn && yarn run watch-css
```

In another terminal, go to the mist-ui folder, type:

```
yarn run start
```

Then in a third terminal, outside the mist-ui folder and install and run mist-shell:

```
git clone https://github.com/ethereum/mist-shell.git
cd mist-shell
yarn && yarn start:dev
```

## Dev Mode
The developer mode will try to load Mist UI from a locally running web server on port `3080`. To run in dev mode you will have to follow the setup instructions on the Mist UI repo.
Expand Down

0 comments on commit b7f3939

Please sign in to comment.