Pithy project description
- Product Owner: W1: Burk, Nathan
- Scrum Master: W1: Nathan, David
- Producer: W1: David, Burk
Some usage instructions
- Node 7.7x
- MongoDB 9.1.x
- etc
- etc
From within the root directory:
sudo npm install -g yarn
yarn install / yarn (equivalent to npm install)
##Yarn cmds
-__Adding a dependency__-
yarn add [package]
yarn add [package]@[version]
yarn add [package]@[tag]
-__Upgrading a dependency__-
yarn upgrade [package]
yarn upgrade [package]@[version]
yarn upgrade [package]@[tag]
-__Removing a dependency__-
yarn remove [package]
To build the apk:
From within the client directory: http://ionicframework.com/docs/v1/guide/publishing.html
cordova build --release android
*** Creates the unsigned apk ***
keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000
*** Generates key for signing apk ***
### Roadmap
View the project roadmap [here](LINK_TO_PROJECT_ISSUES)
If you have AAPT errors, try:
cordova platform remove android
cordova platform add android
export ANDROID_HOME=$HOME/Android/Sdk
export PATH=$PATH:$ANDROID_HOME/tools
gulp --cordova "run android"
## Contributing
See [CONTRIBUTING.md](CONTRIBUT