This project is the Ember code relating to the Ember vs React— the ultimate battle (Round 1) and Ember vs React - round 2 articles.
This is a very basic example of how to get started with Ember. It uses firebase for data persistence and sass for styling.
ember serve - Starts the project and go to localhost:4200 to view the project
ember test - Runs the tests
-
You need to make a firebase account.
-
Create a project
- Click on database tab
- Click real time database
- Click start in test mode
-
Go to overview page
-
Click 'Add firebase to your web app'
-
Create a file called firebase.js in the config folder. And copy the firebase object into it so it looks similar to this:
module.exports = {
apiKey: "",
authDomain: "",
databaseURL: "",
projectId: "",
storageBucket: "",
messagingSenderId: ""
};And then you will have your own firebase setup.