Skip to content
This repository has been archived by the owner on Jan 1, 2023. It is now read-only.

tarlepp/AngularJS-Firebase-Material-Demo

Repository files navigation

AngularJS/Firebase/Material - demo

Dependency Status devDependency Status

What is this?

Just a small demo to show how to use Angular + Firebase + Google Material Design together. Currently this demo application contains following features:

  • Social media login (Facebook, Twitter, Google+ and GitHub)
  • Personal 'Todo' item list
  • Chat with other users

Demo

Demo of this application can be found from https://boiling-fire-2804.firebaseapp.com/

QR code to demo application

Used libraries, guides, etc.

Libraries

Guides

Other resources

Installation

First of all you have to install npm and node.js to your box. Installation instructions can be found here.

After that you need to install bower and gulp main packages to make all things to happen. These can be installed with following commands on your *nix box.

sudo npm install bower -g
sudo npm install gulp -g

And when you have npm and node.js installed to your box, just navigate yourself to root folder of the app and run following commands:

npm install
bower install

Configuration

See /src/app/config/config.json_example file and copy it to /src/app/config/config.json file and make necessary changes to it. Note that you need a Firebase account to get that url.

Firebase

To get Firebase running as it should first you need to make new Firebase application. Which you can create easily from their website https://www.firebase.com/.

After you have created new application you need to make some security rules for the used data storage. Below is configuration that my demo application uses, so you can use the same within your application.

{
    "rules": {
      "messages": {
          ".write": "auth !== null",
          ".read": "auth !== null"
      },
      "todos": {
        "$uid": {
          // grants write access to the owner of this user account whose uid must exactly match the key ($uid)
          ".write": "auth !== null && auth.uid === $uid",
          // grants read access to any user who is logged in with Facebook
          ".read": "auth !== null && auth.uid === $uid"
        }
      }
    }
}

These rules ensure that 'todo' items are show only to user who made those. Also chat messages requires that user is logged in to read / write those.

Development

To start developing in the project run:

gulp serve

Then head to http://localhost:3002 in your browser.

The serve tasks starts a static file server, which serves the AngularJS application, and a watch task which watches all files for changes and lints, builds and injects them into the index.html accordingly.

Tests

To run tests run:

gulp test

Or first inject all test files into karma.conf.js with:

gulp karma-conf

Then you're able to run Karma directly. Example:

karma start --single-run

Production ready build - a.k.a. dist

To make the app ready for deploy to production run:

gulp dist

Now there's a ./dist folder with all scripts and stylesheets concatenated and minified, also third party libraries installed with bower will be concatenated and minified into vendors.min.js and vendors.min.css respectively.

Running production ready build

To start production ready build in the project run:

gulp production

Author

Tarmo Leppänen

License

The MIT License (MIT)

Copyright (c) 2015 Tarmo Leppänen

About

Just a small demo to show how to use AngularJS + Firebase + Google Material Design together.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published