- Vue.js v2
- Firebase (Storage, Database and Functions)
- Google-Cloud/Vision
- Browserify with Vueify and Babelify (babel-preset-env) to transpiling
- Yarn as Package Manager
- Create a Firebase project on Firebase Console
- Enable Cloud Storage for Firebase
- Enable public access to Cloud Storage for Firebase in your project
service firebase.storage {
match /b/{bucket}/o {
match /{allPaths=**} {
allow read, write;
}
}
}
- Enable public access to read in RealTime Database
{
"rules": {
".read": "true",
".write": "auth !== null"
}
}
- Enable Cloud Vision API in Google Cloud Console for your project (Requires enable Billing)
MIT (c) 2017 Carlos Azaustre