A simple To-Do List EmberJS application using Firebase for persistence. The todo body accepts Markdown syntax. It is my implementation of the last in-class project on the Build Web Apps Using EmberJS: The Complete Course.
You will need the following things properly installed on your computer.
- Git
- Node.js (with npm)
- Ember CLI
- Google Chrome
git clone <repository-url>this repositorycd ember-to-do-listnpm install
You will need to create a (Firebase app)[https://firebase.google.com/] and replace the credentials at config/environment.js.
firebase: {
apiKey: "YOUR-API-KEY",
authDomain: "YOUR-FIREBASE-APP.firebaseapp.com",
databaseURL: "https://YOUR-FIREBASE-APP.firebaseio.com",
storageBucket: "YOUR-FIREBASE-APP.appspot.com"
}ember serve- Visit your app at http://localhost:4200.
- Visit your tests at http://localhost:4200/tests.
Make use of the many generators for code, try ember help generate for more details
ember testember test --server
npm run lint:hbsnpm run lint:jsnpm run lint:js -- --fix
ember build(development)ember build --environment production(production)
Specify what it takes to deploy your app.
At the time of this project development, the stable version of emberfire, the official Firebase adapter, only supports EmberJS 3.4.
This project is licensed under the MIT License - see the LICENSE file for details
