An open API service indexing awesome lists of open source software.

https://github.com/alvarowolfx/find-my-pet

App made for a Ionic Workshop
https://github.com/alvarowolfx/find-my-pet

Last synced: 2 months ago
JSON representation

App made for a Ionic Workshop

Awesome Lists containing this project

README

        

# Find My Pet App
This app was developed for demo purposes using Ionic and Firebase for a Ionic Workshop. So I'm sharing the code for those who are interested in studying.

![promo1](https://raw.github.com/alvarowolfx/find-my-pet/master/resources/find-my-pet-promo-1.png)
![promo2](https://raw.github.com/alvarowolfx/find-my-pet/master/resources/find-my-pet-promo-2.png)

The presentation about the app can be seen [here](http://www.slideshare.net/alvarowolfx/ionic-workshop).

## Pre requirements
- Node.js and NPM installed (I recommend to do something like [this](https://github.com/sindresorhus/guides/blob/master/npm-global-without-sudo.md) to install global packages without sudo )
- Ionic CLI installed, use this command to install globally the ionic command :
```shell
npm install -g ionic
```

## How to run
- Install required npm packages, run this command on project folder :
```shell
npm install
```
- Start ionic livereload server
```shell
ionic serve
```

## How to run on Simulator/Device
- Basically you choose what platform you want to run, theese commands will configure the platform specific project :
```shell
# For iOS
ionic platform ios
# For Android
ionic platform android
```
- And to build and run on the platform you choose, run the command :
```shell
ionic run android
# or
ionic run ios
```

- A more extensive guide can be found [here](http://ccoenraets.github.io/ionic-tutorial/build-ionic-project.html).