Removed unneeded security rules setting from local setup

This commit is contained in:
Jacob Wenger
2016-05-26 14:54:24 -07:00
parent f5697888eb
commit 61357a94b0

View File

@@ -87,18 +87,7 @@ $ bower install # install local JavaScript dependencies
### Create a Firebase Project
1. Create a Firebase project [here](https://console.firebase.google.com).
2. Set the project's Realtime Database Security Rules to public:
```json
{
"rules": {
".read": true,
".write": true
}
}
```
3. Set the `REACTFIRE_TEST_DB_URL` environment variable to your project's database URL:
2. Set the `REACTFIRE_TEST_DB_URL` environment variable to your project's database URL:
```bash
$ export REACTFIRE_TEST_DB_URL="https://<YOUR-DATABASE-NAME>.firebaseio.com"