Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 757 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 757 Bytes

Polymer + Firebase Q&A

A simple Q&A app built with Polymer and Firebase. Covers routing, authentication, material design, and CRUD operations.

Running Locally

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