Skip to content

Commit

Permalink
what is up
Browse files Browse the repository at this point in the history
  • Loading branch information
teenageknight committed Sep 22, 2024
1 parent 7960a9f commit 717ce30
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion functions/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ const serviceAccountLocal = require("../service-account-keys/bryce-jackson-websi
// serviceAccount = process.env.FIREBASE_SERVICE_ACCOUNT;
// }
console.log("right outside of the if");
console.log(serviceAccountLocal);
console.log(process.env.FIREBASE_SERVICE_ACCOUNT);
const config = {
credential: cert(serviceAccountLocal),
credential: cert(process.env.FIREBASE_SERVICE_ACCOUNT),
};

initializeApp(config);
Expand Down

0 comments on commit 717ce30

Please sign in to comment.