forked from googlearchive/generator-angularfire
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial build structure and config are functional.
Still to complete: login page, account page, chat example, and test units
- Loading branch information
Showing
22 changed files
with
838 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.DS_Store | ||
node_modules | ||
test/tmp | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"bower": { | ||
"firebase": "1.0.x", | ||
"angularfire": "0.8.x", | ||
"mockfirebase": "0.3.x", | ||
"simplelogin": "1.6.x" | ||
}, | ||
|
||
"simpleLoginProviders": [ | ||
{ "name": "Email/Password", "value": "password", "checked": true }, | ||
{ "name": "Anonymous", "value": "anonymous" }, | ||
{ "name": "Facebook", "value": "facebook" }, | ||
{ "name": "Google", "value": "google" }, | ||
{ "name": "Twitter", "value": "twitter" } | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
angular.module('firebase.config', []) | ||
.constant('FBURL', 'https://<%= firebaseName %>.firebaseio.com')<% | ||
if( loginModule ) { | ||
%> | ||
.constant('SIMPLE_LOGIN_PROVIDERS', ['<%= simpleLoginProviders.join("','") %>']) | ||
|
||
.constant('loginRedirectPath', '/login')<% } | ||
%>; |
Oops, something went wrong.