This repository was archived by the owner on Dec 15, 2018. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ {
2+ "projects": {
3+ "default": "devspace-app"
4+ }
5+ }
Original file line number Diff line number Diff line change 1+ {
2+ "rules" : {
3+ "signups" : {
4+ ".write" : true ,
5+ ".read" : false
6+ },
7+ "users" : {
8+ ".write" : " auth !== null && auth.provider === 'github'" ,
9+ ".read" : " auth !== null && auth.provider === 'github'" ,
10+ "$uid" : {
11+ ".read" : " auth != null && auth.uid == $uid" ,
12+ ".write" : " auth != null && auth.uid == $uid"
13+ }
14+ },
15+ "v1" : {
16+ "users" : {
17+ ".write" : " auth !== null && auth.provider === 'github'" ,
18+ ".read" : " auth !== null && auth.provider === 'github'" ,
19+ "$uid" : {
20+ ".read" : " auth != null && auth.uid == $uid" ,
21+ ".write" : " auth != null && auth.uid == $uid"
22+ }
23+ },
24+ "signups" : {
25+ ".write" : true ,
26+ ".read" : false
27+ }
28+ }
29+ }
30+ }
Original file line number Diff line number Diff line change 11{
2- "firebase" : " devspace-app" ,
3- "public" : " dist" ,
4- "ignore" : [
5- " firebase.json" ,
6- " **/.*" ,
7- " **/dist/**" ,
8- " **/node_modules/**"
9- ]
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+ }
1014}
You can’t perform that action at this time.
0 commit comments