This project was generated with Angular CLI version 1.4.7
DEMO - angularfire2 api showcase
- Authentication
- Realtime Database
- Firestore (new)
- Storage
- Hosting
- Managing users
- Sign up social/email
- Sign in
- Sign out
Covers CRUD Operations in both List & Objects
| Objects | Lists | |
|---|---|---|
| Create | set() / update() | push() |
| Read | valueChanges() | valueChanges(), snapshotChanges() |
| Update | set() / update() | set() / update() |
| Delete | remove() | remove() |
TODO
- Upload files
- Download files
- Remove files
git clone https://github.com/ElecTreeFrying/angularfire2-api-showcase.git angularfire2-democd angularfire2-demonpm install
Create an account firebase console.
-
Select Add Project
-
Select Authentications
-
Click copy WEB SETUP
-
Create the environment files below in
src/environments/.environment.prod.ts
export const environment = { production: true, firebaseConfig: { **WEB SETUP** } };environment.ts
export const environment = { production: false, firebaseConfig: { **WEB SETUP** } };
TODO