An ionic app based on TGC(Thermal Growth Coefficient) to predict the weight and needs of fishes.
- Clone this repository.
- Run
npm installfrom the project root. - If you do not install the ionic CLI (
npm install -g ionic) - Run
ionic servein a terminal from the project root.
. ├── src │ ├── index.html │ ├── app │ │ ├── app.component.ts │ │ ├── app.html │ │ ├── app.module.ts │ │ ├── app.scss │ │ └── main.ts │ ├── assets * some imgs needed for this app │ │ │ ├── components/progress-bar * progress-bar component | | │ ├── providers │ │ └── http.ts * send http requests │ ├── pages │ │ ├── ingre * ingre tab -- fish feeds list | | ├── ingre-detail * detail info of a feed │ │ ├── tgc * tgc tab -- choose a fish to compute tgc │ │ ├── tgc-compute * compute tgc │ │ ├── predict * predic tab │ │ ├── predict-detail * initial page to predict │ │ ├── predict-result * result of predict │ │ ├── fishtype * fishtype tab -- show all fishes │ │ ├── user * user tab │ │ └── tabs │ └── theme │ └── variables.scss ├── tsconfig.json └── tslint.json ionic (Ionic CLI) : 4.0.2 npm: 5.6.0 Cordova cli: 8.0.0 Node: v8.11.3 
