
ionic-angular 5 Firebase Database Starter
Start your awesome app in Firebase!!
$9.00
Details
Installation
- Create a Firebase Project in firebase.google.com
- In your Firebase Console create a security rules for public access.
// These rules give anyone, even people who are not users of your app,
// read and write access to your database
{
"rules": {
".read": true,
".write": true
}
}
Note: Change this later to make private your data.
- Update your Ionic CLI.
$npm install -g [email protected]
- Download and uncompress your Files.
- Go to the folder and run.
$ npm install
- Go to file src/config.firebase.ts and update the info with your firebase data.
export const firebaseConfig = {
apiKey: "",
authDomain: "",
databaseURL: "",
projectId: "",
storageBucket: "",
messagingSenderId: ""
};
- Run
$ionic serve
And that's it.
My other Ionic Starters
ionic-react 5 Firebase Auth Starter
ionic-angular 5 Firebase Auth Starter
ionic-angular 5 Firebase Database Starter
ionic-angular 5 Firebase Storage
ionic-angular 5 Firebase Database
Support and Feedback:
If you are facing an issue related to Ionic please refer to: forum.ionicframework.com
If you found an error or a bug in this Starter. Contact us via the email that you get from Gumroad.
Changelog
5.0.0 "Rebuild in Ionic 5 + Firebase 5" (2020-04-15)
- Ionic 5
- Firebase 5
1.0.2 "AngularFire v5 updated" (2017-14-10)
- Angularfire2 latest version.