Firebase Ionic 2 Demo Save

A demo app integrating Firebase 3 into Ionic 2

Project README

Firebase 3, Ionic 2 Demo

Note that this project has been entirely replaced with a new update that matches Ionic 2's RC2 release.

This project serves as a demo for how I integrated Firebase 3 into an Ionic 2 project. It includes basic database syncing, as well as Firebase user authentication. The goal was to create a demo app that could accompany a blog post I wrote.

Download and Installation

Firebase Setup

In order to set up this project, I had to previously create a Firebase app, following the steps outlined in their guide. Those steps are beyond the scope of the tutorial I wrote, and this demo begins at the point when:

You can find information on all of these topics in the Web guide in the Firebase docs.

You're welcome to continue using my Firebase instance in running this demo. Please don't overuse it, as I'm on the free tier and therefore only have a certain amount of requests and connections afforded to me every month. If you'd like to replace my Firebase account details with your own, instructions on how to do that are listed below.

Repo Download

When you clone this repo, it will come with nothing but the app files. You'll need to run through the installation process for building an Ionic project, which is normally done for you in ionic start.

Environment

Here's the output from my ionic info that allows me to run simulators and build appropriately for iOS:

Cordova CLI: 6.1.1 
Ionic Framework Version: 2.0.0-rc.2
Ionic CLI Version: 2.1.8
Ionic App Lib Version: 2.1.4
Ionic App Scripts Version: 0.0.46
ios-deploy version: 1.8.6 
ios-sim version: 4.1.1 
OS: OS X El Capitan
Node Version: v6.2.1
Xcode version: Xcode 7.3.1 Build version 7D1014

Keep in mind that - for whatever reason - this doesn't display any information about my Android stuff. Which, I mean, I dunno why. Anyway, here they are:

  • Android Studio 1.5.1
  • Android 5.1.1, API Level 22, Rev 2
  • Android SDK Build Tools
  • Android SDK Tools 24.3.3
  • Android SDK Platform-Tools 23.1

Install Node Modules:

$ npm install

Make a www/ Directory

Yes, that sounds weird, but from my experience, as well as reading through this issues post it looks like you'll need to create a www/ directory in order for some Cordova-based commands to realize you're in a Cordova-based project.

$ mkdir www

Restore the Project State

The folks at Ionic were nice enough to add a command that builds your project based on the plugin and platform information stored in the package.json:

$ ionic state restore

Add the Android Platform

If you'd like, add Android.

$ ionic platform add android

Running the Project

Provided you've followed the instructions above, and have an internet connection, you should be able to run the app, and see the stuffs. It's all coming from a demo app that I have set up on my Firebase dashboard, which has two seeded records, and one dummy user.

iOS

# for some reason, I had to run this twice on the first go
# maybe once to build, and once to serve?
$ ionic run ios

Android

$ ionic run android

To Replace My Firebase App With Your Firebase App:

  • Seed the app with data that matches the following interface:
{
	static: string,
	private: string
}
  • Enable your application to use Email/Password authentication, on the Sign In Method tab of the Auth link in your app dashboard.
  • In the Users tab of the Auth link in your app dashboard, create a dummy user.
  • In the Rules tab of the Database link in your app dashboard, revise the default rules to match the following JSON:
{
  "rules": {
    ".read": "true",
    ".write": "auth != null",
    "private": {
      ".read": "auth != null"
    }
  }
}
  • In the app dashboard Home screen, click on the Add Firebase to your web app link, and copy the contents of the modal; then make your way to the src/providers/data/data.service.ts file of this repo, and replace the database details listed on lines 17-20 with the details from your database.

Cake and grief counseling will be available at the conclusion of the test.

Open Source Agenda is not affiliated with "Firebase Ionic 2 Demo" Project. README Source: colinjlacy/firebase-ionic-2-demo
Stars
34
Open Issues
1
Last Commit
7 years ago

Open Source Agenda Badge

Open Source Agenda Rating