From b1774ca9bdd033b9f3356e7869323ddb9bfd2331 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bal=C3=A1zs=20Orb=C3=A1n?= Date: Tue, 21 Mar 2023 22:08:39 +0100 Subject: [PATCH] fix firebase indent --- packages/adapter-firebase/src/index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/adapter-firebase/src/index.ts b/packages/adapter-firebase/src/index.ts index de20e6cf..8157fe20 100644 --- a/packages/adapter-firebase/src/index.ts +++ b/packages/adapter-firebase/src/index.ts @@ -64,13 +64,13 @@ export interface FirebaseAdapterConfig extends AppOptions { } /** - * ## Setup + * ### Setup * * First, create a Firebase project and generate a service account key. Visit: `https://console.firebase.google.com/u/0/project/{project-id}/settings/serviceaccounts/adminsdk` (replace `{project-id}` with your project's id) * * Now you have a few options to authenticate with the Firebase Admin SDK in your app: * - * ### Environment variables + * #### Environment variables * - Download the service account key and save it in your project. (Make sure to add the file to your `.gitignore`!) * - Add [`GOOGLE_APPLICATION_CREDENTIALS`](https://cloud.google.com/docs/authentication/application-default-credentials#GAC) to your environment variables and point it to the service account key file. * - The adapter will automatically pick up the environment variable and use it to authenticate with the Firebase Admin SDK. @@ -86,7 +86,7 @@ export interface FirebaseAdapterConfig extends AppOptions { * }) * ``` * - * ### Service account values + * #### Service account values * * - Download the service account key to a temporary location. (Make sure to not commit this file to your repository!) * - Add the following environment variables to your project: `FIREBASE_PROJECT_ID`, `FIREBASE_CLIENT_EMAIL`, `FIREBASE_PRIVATE_KEY`. @@ -110,7 +110,7 @@ export interface FirebaseAdapterConfig extends AppOptions { * }) * ``` * - * ### Using an existing Firestore instance + * #### Using an existing Firestore instance * * If you already have a Firestore instance, you can pass that to the adapter directly instead. *