A set of blueprints and helpers for rapid web app development.
npm install ember-dnf-blueprintsember install ember-dnf-blueprintsember g dnf-bootstrap installember g dnf-navbar mainAdd {{nav-main}} to your application template
ember g dnf-google-anlaytics UA-111111-11ember g dnf-favicon installember g dnf-firebase your-app-nameif your app url is mywebapp.firebaseio.com then you would run ember g dnf-firebase mywebapp
ember g dnf-accounts installImportant: You should add firebase to your app first using the above instructions
Note: You might want to add this to your application route
``
auth: Ember.inject.service(),
beforeModel: function() {
let session = this.get('session');
return session.fetch().then(() => {
return this.get('auth').setUser();
}).catch((e) => {
console.log(e);
});
},
``
* blueprint for generating a footer
* blueprint for adding google anlaytics
* blueprint for generating a login form
* blueprint for generating a signup form
* get rid of ~un files (git will ignore them, it's only a problem in dev)