An open API service indexing awesome lists of open source software.

https://github.com/sescobb27/festinare_mobile

Festinare discount app using ionic framework
https://github.com/sescobb27/festinare_mobile

Last synced: about 2 months ago
JSON representation

Festinare discount app using ionic framework

Awesome Lists containing this project

README

        

how to build the project from scratch

```bash
gem install sass
npm install -g bower grunt-cli cordova ionic jshint
bower install --save ngCordova
ionic start --appname festinare_mobile --id com.festinare.discount --sass festinare_mobile tabs
ionic setup sass
ionic platform add android ios
npm install
ionic upload
ionic push --google-api-key="AIzaSyB39lKD0T3t2qDHhaSxifZaId4F-vquAtE"
ionic plugin add https://github.com/phonegap-build/PushPlugin.git \
https://github.com/katzer/cordova-plugin-local-notifications

# Development
ionic serve --lab

# Deployment
export ANDROID_HOME=ANDROID_SDK_PATH
ANDROID_TOOLS=~/IDEs/adt-bundle-linux/sdk/platform-tools
ANDROID_TOOLS=~/IDEs/adt-bundle-linux/sdk/tools:$ANDROID_TOOLS
export PATH=$ANDROID_TOOLS:$PATH

ionic build android
ionic build ios

# if it doesn't work try this
cordova prepare android
cordova compile android -- --ant
```