Skip to content

ebdonato/speed-dial

Repository files navigation

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;
    }
  }
}

About

Speed Dial for Browser New Tabs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published