Skip to content

Commit

Permalink
Remove $ from terminal commands in README (#130)
Browse files Browse the repository at this point in the history
* Remove $ from terminal commands in README

So they can be copied and pasted a block at a time

* Remove dependency on globally installed webpack
  • Loading branch information
Tyriar authored and rauchg committed Jul 21, 2016
1 parent 51b7232 commit 12250ce
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,23 +24,23 @@ To install `package.json` dependencies in a way where the native
modules are built with `electron`, run:

```bash
$ ./scripts/install.sh
./scripts/install.sh
```

Then, you want to make sure `app/dist` is populated. I recommend
running `webpack` with `--watch` so that any changes you make
to the app are detected.

```bash
$ cd app/
$ npm install
$ npm run dev
cd app/
npm install
npm run dev
```

Then you can run in the main directory:

```bash
$ npm start
npm start
```

...to launch the app!

0 comments on commit 12250ce

Please sign in to comment.