The Farm Crap App Pro (FCA) is the open-source app that helps to reduce fertiliser use by calculating organic manure nutrients values.
FCA is based on Ionic and any calculations have been based off of the codebase for the Android version of FCA.
To get the project up and running in your development environment, follow these quick instructions below.
-
Install Node.js and open up your command line utility
-
Install Ionic
npm install -g cordova ionic
- Clone this project to your local machine
git clone https://github.com/Elixel/farm-crap-app-pro-app
- Install required packages
cd clonedAppDirectory
npm install
- Serve the project locally
# Do this before doing any cordova commands to generate WWW folder
ionic serve
- Deploy to device
# Generate icons/splash
ionic cordova resources
# Add iOS platform
ionic cordova platform add ios
# Build and run app
ionic cordova run ios