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 new <Insert-project-name>
- Creates a new project named ember-movie-list
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'
-
Copy the firebase object into the newly created firebase.js in the config folder. So it looks similar to this:
module.exports = {
apiKey: "",
authDomain: "",
databaseURL: "",
projectId: "",
storageBucket: "",
messagingSenderId: ""
};
And then you will have your own firebase setup.