funretro/distributed

Include Database Permissions in Local Environment Setup Instructions

bccurry opened this issue · 2 comments

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.

screen shot 2018-08-21 at 8 45 36 pm

I'd recommend at least having the rules require a logged in user

{
  "rules": {
    ".read": "auth != null",
    ".write": "auth != null"
  }
}