Skip to content

Instantly share code, notes, and snippets.

@ra9r
Last active June 10, 2019 03:02
Show Gist options
  • Save ra9r/744f1da94a33505d90e0dafd1018a1df to your computer and use it in GitHub Desktop.
Save ra9r/744f1da94a33505d90e0dafd1018a1df to your computer and use it in GitHub Desktop.
Initialize #firestore on a server
const admin = require('firebase-admin');
let serviceAccount = require('path/to/serviceAccountKey.json');
admin.initializeApp({
credential: admin.credential.cert(serviceAccount)
});
let db = admin.firestore();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment