Skip to content

Instantly share code, notes, and snippets.

@wovalle
Created February 1, 2019 00:18
Show Gist options
  • Save wovalle/1192ce06c526f79684b28d5fb66c6c56 to your computer and use it in GitHub Desktop.
Save wovalle/1192ce06c526f79684b28d5fb66c6c56 to your computer and use it in GitHub Desktop.
import * as admin from 'firebase-admin';
const serviceAccount = require('../firestore.creds.json');
admin.initializeApp({
credential: admin.credential.cert(serviceAccount),
databaseURL: `https://${serviceAccount.project_id}.firebaseio.com`,
});
const firestore = admin.firestore();
firestore.settings({
timestampsInSnapshots: true,
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment