An application for storing tea tasting notes. This application is the output of the three day Ionic Framework Enterprise training. It is also used as the starting point for some of our other prorduct demos such as the demos for Identity Vault and Auth Connect.
If you would like to build this application yourself, do the following:
- Clone this repo
cd tea-taster
npm i
npm run build
ionic cap sync
At this point, you should be able to either run the application in a dev server via ionic start
or on a device using ionic cap open ios
(or android
).
Each step of the training has its own commit within the master
branch. You should be able to use this information to gather a general idea of the various changes that were needed at each step of the development of this application. However, if code needs to be modified to support later changes (such as a significant change to a dependency), that coding change will only be reflected in later commits, so the commits themselseves should only be used as a guide as needed.
master
- shows the completed@ionic/angular
three-day Enterprise training project. This project is used as the basis for other trainingsfeature/pwa
- shows the completed@ionic/angular
PWA training. In this training, we use the Angular PWA toolkit to add a service worker and webapp manifest to our project. We also add an application service that listens for updates to the PWA and offeres to restart when a complete update is available. This version of the application can be deployed as a hybrid native application (iOS and Android) or as a PWA using the same code base.
Each of the branches has a similar structure to master
whereby each step is signified by its own commit in the branch.
Happy Coding!