├── .gitignore ├── .vscode └── settings.json └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | www/build/ 3 | platforms/ 4 | plugins/ 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | // Place your settings in this file to overwrite default and user settings. 2 | { 3 | // Controls the font size. 4 | "editor.fontSize": 12 5 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [OUTDATED] Integrating Firebase with AngularFire2 into AngularJS & Ionic2 2 | ### See Updated Project Here [https://github.com/aaronksaunders/ionic2.0-angularfire](https://github.com/aaronksaunders/ionic2.0-angularfire) 3 | --------------------------------------------------------------------------------