A simple Q&A app built with Polymer and Firebase. Covers routing, authentication, material design, and CRUD operations.
Create a new app in Firebase. Set up a new GitHub application and configure authentication in Forge. Run the following command in your terminal:
npm install && bower install
Edit /app/elements/app.html
and change <your-firebase>
to your Firebase URL:
Polymer({
ready: function() {
this.globals.firebase = '<your-firebase>';
},
Run the server locally with Grunt:
grunt serve