Skip to content
/ docs Public
forked from withastro/docs

Commit

Permalink
i18n(fr): Update guides/backend/google-firebase from withastro#8422
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Bonnet <[email protected]>
  • Loading branch information
thomasbnt committed Jun 25, 2024
1 parent 216839f commit ce6264e
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions src/content/docs/fr/guides/backend/google-firebase.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,19 @@ const serviceAccount = {
client_x509_cert_url: import.meta.env.FIREBASE_CLIENT_CERT_URL,
};

export const app = activeApps.length === 0 ? initializeApp({
credential: cert(serviceAccount as ServiceAccount),
}) : activeApps[0];
const initApp = () => {
if (import.meta.env.PROD) {
console.info('cPROD env détecté. Utilisation du compte de service par défaut.')
// Utiliser la configuration par défaut dans les fonctions de Firebase. Doit être déjà injecté dans le serveur par Firebase.
return initializeApp()
}
console.info("Chargement du compte de service à partir de l'environnement.")
return initializeApp({
credential: cert(serviceAccount as ServiceAccount)
})
}

export const app = activeApps.length === 0 ? initApp() : activeApps[0];
```

:::note
Expand Down

0 comments on commit ce6264e

Please sign in to comment.