Firebase Init files

This commit is contained in:
ClaytonWWilson
2019-09-12 14:33:13 -04:00
parent 3c803d8eb4
commit d0b32835ac
15 changed files with 3209 additions and 0 deletions

7
storage.rules Normal file
View File

@@ -0,0 +1,7 @@
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write: if request.auth!=null;
}
}
}