From b6260f3b95d8946567b3023b04ce2f186b8510a3 Mon Sep 17 00:00:00 2001 From: Kieran Farr Date: Tue, 28 May 2024 09:28:32 -0700 Subject: [PATCH] add dev and prod config env files https://firebase.google.com/docs/projects/api-keys --- config/.env.development | 7 +++++++ config/.env.production | 7 +++++++ config/.gitignore | 2 -- 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 config/.env.development create mode 100644 config/.env.production delete mode 100644 config/.gitignore diff --git a/config/.env.development b/config/.env.development new file mode 100644 index 000000000..f843c9b87 --- /dev/null +++ b/config/.env.development @@ -0,0 +1,7 @@ +FIREBASE_API_KEY = "AIzaSyDI557E8HZHoh5ETqIrlmt8d0C4HfyiCG8" +FIREBASE_AUTH_DOMAIN = "dev-3dstreet.firebaseapp.com" +FIREBASE_PROJECT_ID = "dev-3dstreet" +FIREBASE_STORAGE_BUCKET = "dev-3dstreet.appspot.com" +FIREBASE_MESSAGING_SENDER_ID = "35938260968" +FIREBASE_APP_ID = "1:35938260968:web:ff479731a6603f73b6f65d" +FIREBASE_MEASUREMENT_ID = "G-YF8EXV88Z0" \ No newline at end of file diff --git a/config/.env.production b/config/.env.production new file mode 100644 index 000000000..31740a428 --- /dev/null +++ b/config/.env.production @@ -0,0 +1,7 @@ +FIREBASE_API_KEY = 'AIzaSyCvMNsw2KHyi67WWezu1JIibhS6KiC0NB0' +FIREBASE_AUTH_DOMAIN = '3dstreet.app' +FIREBASE_PROJECT_ID = 'dstreet-305604' +FIREBASE_STORAGE_BUCKET = 'dstreet-305604.appspot.com' +FIREBASE_MESSAGING_SENDER_ID = '568813074454' +FIREBASE_APP_ID = '1:568813074454:web:41ec82e30413603c771d37' +FIREBASE_MEASUREMENT_ID = 'G-T65XPDLZ3F' \ No newline at end of file diff --git a/config/.gitignore b/config/.gitignore deleted file mode 100644 index 9f8680101..000000000 --- a/config/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -.env.development -.env.production \ No newline at end of file