Include Database Permissions in Local Environment Setup Instructions
bccurry opened this issue · 2 comments
bccurry commented
Description
Include Database Permissions in Local Environment Setup Instructions to Fun Retro
Motivation
I want this feature because I was unable to create a new board without modifying the firebase database read/write permissions. The permissions are initially set to false and will need to be set to true in order for the application to interact with the database.
atroutt commented
I'd recommend at least having the rules require a logged in user
{
"rules": {
".read": "auth != null",
".write": "auth != null"
}
}
glauberramos commented
Done