Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,24 @@ Just execute the follow commands to build the project from source:
git clone https://github.com/mapaiva/GitPie.git
cd GitPie
npm install
npm install -g grunt-cli
grunt build
npm start # This is aliased with `npm run linux64`
```

If you're not using `linux64`, choose the right command for you, depending on the platform:

```sh
npm run linux32
npm run linux64
npm run osx32
npm run osx64
npm run win32
npm run win64
```

If you want to make changes in the style of the application, you need to run the dev grunt task that will convert your sass changes into css. For this execute:

```bash
grunt dev
npm run dev
```

## License
Expand Down
11 changes: 10 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,15 @@
"resizable": true
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run linux64",
"linux32": "grunt build && ./build/GitPie/linux32/GitPie",
"linux64": "grunt build && ./build/GitPie/linux64/GitPie",
"osx32": "grunt build && ./build/GitPie/osx32/GitPie",
"osx64": "grunt build && ./build/GitPie/osx64/GitPie",
"win32": "grunt build && ./build/GitPie/win32/GitPie",
"win64": "grunt build && ./build/GitPie/win64/GitPie",
"dev": "grunt dev"
},
"repository": {
"type": "git",
Expand All @@ -39,6 +47,7 @@
"homepage": "https://github.com/mapaiva/GitPie",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-sass": "^0.9.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-nw-builder": "^2.0.0"
Expand Down