Adding Products to Firebase
Explore how to integrate Firebase into your Ember.js e-commerce app to add and save products. Understand removing dummy API data, setting up the add route, and using Ember Data with EmberFire to store products in the Firebase Realtime Database. Gain hands-on experience managing product data effectively.
We'll cover the following...
We'll cover the following...
After we set the adapter and serializer, our e-commerce application is ready to save and retrieve data in the Firebase Realtime Database. First, we need to remove products from our routes coming from the dummy API. This is because they’ll break with our Firebase adapter and serializer.
Removing local store data
Let’s open the category, category/item ...