Skip to content

Latest commit

 

History

History
59 lines (49 loc) · 980 Bytes

README.md

File metadata and controls

59 lines (49 loc) · 980 Bytes

Links da Babi (speed-dial)

Links da Babi is Speed Dial for Browser New Tabs or for Network Social Profile/Bio Links

Install the dependencies

npm install

Start the app in development mode (hot-code reloading, error reporting, etc.)

quasar dev

Build the app for production

quasar build

Customize the configuration

See Configuring quasar.conf.js.

Firebase Rules

Realtime Database

{
  "rules": {
    "bookmarks": {
       ".indexOn": ["index"],
       "$uid": {
        ".read": true,
        ".write": "auth.uid == $uid"
      }
    },
    "config": {
       "$uid": {
        ".read": true,
        ".write": "auth.uid == $uid"
      }
    }
  }
}

Storage

rules_version = '2';
service firebase.storage {
  match /b/{bucket}/o {
    match /{allPaths=**} {
      allow read: if true;
      allow write: if request.auth != null;
    }
  }
}