https://github.com/hzooly/ionicv1_message
🔥 Real-time messages management with Firebase & Ionic
https://github.com/hzooly/ionicv1_message
android angularjs firebase ionic ios mobile-app real-time
Last synced: 2 months ago
JSON representation
🔥 Real-time messages management with Firebase & Ionic
- Host: GitHub
- URL: https://github.com/hzooly/ionicv1_message
- Owner: HZooly
- License: mit
- Created: 2017-07-18T20:51:09.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-03-06T17:45:56.000Z (over 8 years ago)
- Last Synced: 2025-04-01T21:50:55.667Z (about 1 year ago)
- Topics: android, angularjs, firebase, ionic, ios, mobile-app, real-time
- Language: JavaScript
- Homepage:
- Size: 5.22 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# IonicV1_Message
Mobile application built with Ionic v1.
Display in real time messages from a Firebase Database.
## Installation
```git clone```
```bower install```
```npm install```
```cp www/js/firebase.sample.js www/js/firebase.js```
Configure `firebase.js`
## Firebase Configuration
On Firebase Console, activate **Anonymous Authentification** (*Auth*), and replace **rules** in *Database menu* by these :
`{
"rules": {
".read": true,
".write": true
}
}`
## Data Structure
Import some data structured like this :
`{
"date" : "19/07/2017",
"id" : 0,
"message" : "Working good",
"status" : "open",
"title" : "First try"
}`
Status can be **open**, **close** or **archive**.
## Status
- 🖥 Working on local machine with `ionic serve` ✅
- 📱 Working on iOS
- iOS 10.x & iOS 11.x ✅
- Tested on simulator ✅
- Tested on physical iPhone 7 ✅
- Old devices ❓
- 📱 Working on Android ✅ `ionic build --prod android`
## Contributors
- Hugo Torzuoli