Skip to content

burnpiro/people-matcher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

People Matcher

Firebase Configuration

  • copy/paste your configuration from your Firebase project's dashboard into one of these files
    • .env
    • or just save them in your system variables (for production)

The .env file should look like this:

GATSBY_API_KEY=AIzaSyBtxZ3phPeXcsZsRTySIXa7n33NtQ
GATSBY_AUTH_DOMAIN=app-s2233d64f8.firebaseapp.com
GATSBY_DATABASE_URL=https://app-s2233d64f8.firebaseio.com
GATSBY_PROJECT_ID=app-s2233d64f8
GATSBY_STORAGE_BUCKET=app-s2233d64f8.appspot.com
GATSBY_MESSAGING_SENDER_ID=701928454501
GATSBY_FIREBASE_APP_ID=1:468943530953:web:67c28399a0d9fd235bdb8

Security Rules

In the Firebase console, go to Database, select "Realtime Database" -> Rules, and paste the rules below:

{
  "rules": {
    ".read": false,
    ".write": false,
    "users": {
      "$uid": {
        ".read": "$uid === auth.uid || root.child('users/'+auth.uid).child('roles').hasChildren(['ADMIN'])",
        ".write": "$uid === auth.uid || root.child('users/'+auth.uid).child('roles').hasChildren(['ADMIN'])"
      },
      ".read": "root.child('users/'+auth.uid).child('roles').hasChildren(['ADMIN'])",
      ".write": "root.child('users/'+auth.uid).child('roles').hasChildren(['ADMIN'])"
    },
    "interests": {
      ".indexOn": ["createdAt"],
      "$uid": {
        ".write": "data.exists() ? data.child('userId').val() === auth.uid : newData.child('userId').val() === auth.uid"
      },
      ".read": "auth != null",
      ".write": "auth != null",
    },
  }
}

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published