Search⌘ K
AI Features

Setting up EmberFire

Explore the process of integrating Ember.js applications with Firebase using EmberFire. Learn how to install the EmberFire addon, configure Firebase settings in environment files, and manage Firestore or Realtime Database adapters. This lesson equips you to set up EmberFire for effective data handling within your web app.

Installing EmberFire

First, we need to install EmberFire in our application. We can install EmberFire as an Ember addon by running the following Ember CLI command:

ember install emberfire@next

The command above generates an application adapter in the app/adapters/application.js directory. If we already have ...