File tree Expand file tree Collapse file tree 5 files changed +29
-3
lines changed
Expand file tree Collapse file tree 5 files changed +29
-3
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "projects": {
3+ "default": "firestarter-96e46"
4+ }
5+ }
Original file line number Diff line number Diff line change 33/src /environments /environment.prod.ts
44/src /environments /environment.ts
55NOTES.md
6+ functions /*
67
78# compiled output
89/dist
Original file line number Diff line number Diff line change 1515
1616Create an account at https://firebase.google.com/
1717
18- - ` git clone `
18+ - ` git clone https://github.com/codediodeio/angular-firestarter.git firestarter `
1919- ` cd firestarter `
2020- ` npm install `
2121
2222Create two new files in the ` /environments ` dir.
2323
24- environment.ts
24+ #### environment.ts
2525``` typescript
2626export const environment = {
2727 production: false ,
@@ -33,7 +33,7 @@ export const environment = {
3333 }
3434};
3535```
36- environment.prod.ts
36+ #### environment.prod.ts
3737``` typescript
3838export const environment = {
3939 production: true ,
Original file line number Diff line number Diff line change 1+ {
2+ "rules" : {
3+ ".read" : " auth != null" ,
4+ ".write" : " auth != null"
5+ }
6+ }
Original file line number Diff line number Diff line change 1+ {
2+ "database" : {
3+ "rules" : " database.rules.json"
4+ },
5+ "hosting" : {
6+ "public" : " dist" ,
7+ "rewrites" : [
8+ {
9+ "source" : " **" ,
10+ "destination" : " /index.html"
11+ }
12+ ]
13+ }
14+ }
You can’t perform that action at this time.
0 commit comments