You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to configure my firebase database and i couldn't resolve this issue
I get this error when i am trying to sign in. The user exists but cannot login.
It would be very helpful to have firebase rules and database scheme.
The text was updated successfully, but these errors were encountered:
I solved permission problem with the following rules. rules_version = '2'; service cloud.firestore { match /databases/{database}/documents { match /{document=**} { allow read, write: if request.auth != null; } } }
Now, the only problem is database scheme. I tried to configure my database like this but it seems somethings are missing.
I don't know where to put "specialties" collection and other values. A database scheme should be provided in the readme.md file.
I just wanted to know how this app looks like.
I am trying to configure my firebase database and i couldn't resolve this issue
I get this error when i am trying to sign in. The user exists but cannot login.
It would be very helpful to have firebase rules and database scheme.
The text was updated successfully, but these errors were encountered: