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
- Host: GitHub
- URL: https://github.com/sescobb27/festinare_mobile
- Owner: sescobb27
- Created: 2015-05-28T00:38:46.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-07-05T21:07:38.000Z (almost 10 years ago)
- Last Synced: 2025-01-31T11:16:29.141Z (4 months ago)
- Language: C++
- Size: 4.62 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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:$PATHionic build android
ionic build ios# if it doesn't work try this
cordova prepare android
cordova compile android -- --ant
```