Files
holobooth/storage.rules
Erick b5a41dfe3b feat: adding production environment config (#317)
* feat: adding production config files

* better handling prod and dev environments

* small fixes and changes regarding prod

* fixing domains

* feat: fixing config functions host

* feat: properly loading firebase options depending on the env

* adding final prod domain url

* fix: lint
2023-01-12 11:23:20 -03:00

10 lines
183 B
Plaintext

rules_version = '2';
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow create: if request.auth != null;
allow read: if true;
}
}
}