Skip to content

Commit

Permalink
full working demo
Browse files Browse the repository at this point in the history
  • Loading branch information
codediodeio committed Oct 15, 2018
1 parent bd6a729 commit 366e7c5
Show file tree
Hide file tree
Showing 30 changed files with 15,737 additions and 65 deletions.
8 changes: 8 additions & 0 deletions .firebase/hosting.ZGlzdC9iYXNl.cache
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
3rdpartylicenses.txt,1539581621473,6e3872fdd90c52f8fe3a5d967023c4395647119197ef3277593cc45e192ea2bc
index.html,1539581621473,6c5db80ae079b78623492ee462bff9689ab3d3881b91b692e9a4fdafdfb33858
runtime.ec2944dd8b20ec099bf3.js,1539581621473,fe4da65f4a99554b6b5dee1b019cbfa532b97645ced5cd91edc6a20c7e630d83
styles.fd102f8b2fe677166199.css,1539581621473,322088138392fa3066e8f5c00a63b0e7b3bdf0d5dea234e92eee5a422979c17c
favicon.ico,1539581621473,e6405ff2ce3b7fb3b1e7409f2ad7d7dc5013462aa2a4b6a8bb72af01c1ca1735
assets/unicorn.svg,1539581621473,0b6a59d426a89c4496416731285168184d1b3da4c698ecb445e61f25e2eb67c8
polyfills.f6ae3e8b63939c618130.js,1539581621473,9afb0c36ea4d4e08ae5f5203cdb2778e9ac36b4ffdb89ba7afcab0b4783de487
main.982211fea02bedef7705.js,1539581621473,97a7bb250a165eb4f64963f950de82413446fe29ac765d6ad2ef91cf3e7cbc04
14 changes: 14 additions & 0 deletions .firebaserc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"projects": {
"default": "instafire-app"
},
"targets": {
"instafire-app": {
"hosting": {
"megachat": [
"firestore-megachat"
]
}
}
}
}
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@
/tmp
/out-tsc
/src/env.ts
/src/app/env.ts
/functions/node_modules
/functions/lib

# dependencies
/node_modules


# IDEs and editors
/.idea
.project
Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Base App for AngularFirebase Lessons
# Episode 144 - Firestore Group Chat

- @angular/fire + firebase
- Auth Service
[Let's Chat on the Live Demo](https://firestore-megachat.firebaseapp.com)

Build a realtime group chat app with Firestore.

## Setup

Expand Down
20 changes: 20 additions & 0 deletions firebase.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"functions": {
"predeploy": [
"npm --prefix \"$RESOURCE_DIR\" run lint",
"npm --prefix \"$RESOURCE_DIR\" run build"
],
"source": "functions"
},
"hosting": {
"target": "megachat",
"public": "dist/base",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}
}
Loading

0 comments on commit 366e7c5

Please sign in to comment.