https://github.com/devgeeks/v.thirsty
A better vegan beer app
https://github.com/devgeeks/v.thirsty
Last synced: 11 months ago
JSON representation
A better vegan beer app
- Host: GitHub
- URL: https://github.com/devgeeks/v.thirsty
- Owner: devgeeks
- Created: 2014-04-15T11:26:26.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-04-15T11:42:51.000Z (about 12 years ago)
- Last Synced: 2025-02-15T05:24:20.171Z (over 1 year ago)
- Language: JavaScript
- Size: 664 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# v.thirsty
## A better vegan beer app
More information coming soon...
### Getting started
Pull in npm and bower packages:
- `npm install`
Then add platforms to taste:
- `./node_modules/.bin/cordova platform add ios`
- `./node_modules/.bin/cordova platform add android`
Now you can run it:
- `grunt debug:ios` - runs default grunt tasks then builds and deploys to the iOS Simulator
- `grunt debug:android` - runs default grunt tasks, then builds and deploys to an Android device or VM
The Grunt commands are pretty simple:
- `grunt` - the default, runs 'jshint', 'copy', 'concat', 'handlebars', and 'min'
- `grunt jshint` - lints the js files
- `grunt copy` - copys bower components into `www`
- `grunt concat` - concatenates the files in `./src/**/*.js` to `www/js/v.thirsty.js`
- `grunt min` - minifies the above to `www/js/v.thirsty.min.js`
- `grunt handlebars` - precompiles the handlebars templates in `tpl/*.hbs` to `www/js/templates.js`