Skip to content

Instantly share code, notes, and snippets.

@amalj07
Last active November 25, 2020 14:26
Show Gist options
  • Save amalj07/d035ba6bf5971f1cb47e069020237029 to your computer and use it in GitHub Desktop.
Save amalj07/d035ba6bf5971f1cb47e069020237029 to your computer and use it in GitHub Desktop.
const admin = require('firebase-admin')
// Initialize firebase admin SDK
admin.initializeApp({
credential: admin.credential.cert(<path to your firebase credentials file>),
storageBucket: <firebaseprojectid>.appspot.com
})
// Cloud storage
const bucket = admin.storage().bucket()
module.exports = {
bucket
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment