Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick M committed Jul 27, 2017
1 parent 08a4f64 commit 6536ff4
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,42 @@ This was made with electron and angularjs. This is my first time using both of t



## Run

In the project directory:

```bash
npm start
```

## Make Executable

To make a build for your OS:


for use in npm scripts
```bash
npm install electron-packager --save-dev
```
for use from cli
```bash
sudo npm install electron-packager -g
```
For Linux :
```bash
electron-packager . --overwrite --platform=linux --arch=x64 --prune=true --out=release-builds
```
For Mac :
```bash
electron-packager . --overwrite --platform=darwin --arch=x64 --prune=true --out=release-builds
```

For Windows :
```bash
electron-packager . --overwrite --platform=win32 --arch=x64 --prune=true --out=release-builds
```




# Donate
Expand Down

0 comments on commit 6536ff4

Please sign in to comment.