From 335e9d4e8dfb68e9140b01b6326d881605e10a34 Mon Sep 17 00:00:00 2001 From: Gourav Goyal <1gouravgg@gmail.com> Date: Tue, 16 Jun 2020 23:00:10 +0530 Subject: [PATCH] Added missing .env.local.example file for with example firebase-authentication-app (#14235) Added missing .env.local.example file for with example firebase-authentication-app. I've tested it personally and it is working fine. --- examples/with-firebase-authentication/.env.local.example | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 examples/with-firebase-authentication/.env.local.example diff --git a/examples/with-firebase-authentication/.env.local.example b/examples/with-firebase-authentication/.env.local.example new file mode 100644 index 0000000000..283b89ef8c --- /dev/null +++ b/examples/with-firebase-authentication/.env.local.example @@ -0,0 +1,9 @@ +# Update these with your Firebase app's values. +FIREBASE_CLIENT_EMAIL=my-example-app-email@example.com +NEXT_PUBLIC_FIREBASE_PUBLIC_API_KEY=MyExampleAppAPIKey123 +NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN=my-example-app.firebaseapp.com +NEXT_PUBLIC_FIREBASE_DATABASE_URL=https://my-example-app.firebaseio.com +NEXT_PUBLIC_FIREBASE_PROJECT_ID=my-example-app-id + +# Your Firebase private key. +FIREBASE_PRIVATE_KEY=some-key-here -- GitLab