I want anyone to be able to access the database and write to it. I know that's not secure, but this is a pretty dummy site where I don't want people to have to create accounts. There is no login. Anytime I set my security for storage to public it lasts for a couple hours and then gets changed back right away. Does firebase not allow this?
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write;
}
}
}