mirror of
https://github.com/flutter/holobooth.git
synced 2025-08-06 14:50:05 +08:00

* 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
10 lines
183 B
Plaintext
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;
|
|
}
|
|
}
|
|
}
|