Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Firebase permission problem #3

Open
erdometo opened this issue Nov 9, 2020 · 2 comments
Open

Firebase permission problem #3

erdometo opened this issue Nov 9, 2020 · 2 comments

Comments

@erdometo
Copy link

erdometo commented Nov 9, 2020

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.
resim

It would be very helpful to have firebase rules and database scheme.

@clearnetinc
Copy link

Have you enabled your Cloud Firestore database yet?

If you you are activating it for the 1st time be sure to select testing which gives you 30days before requiring you to set Rules.

Hope that helps

@erdometo
Copy link
Author

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.

resim

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants