Skip to content

Commit

Permalink
Update: Alterações na variáveis de ambiente.
Browse files Browse the repository at this point in the history
  • Loading branch information
luccameds committed Sep 2, 2024
1 parent 873cbe3 commit 018b1f6
Show file tree
Hide file tree
Showing 3 changed files with 2,216 additions and 36 deletions.
12 changes: 6 additions & 6 deletions .env.test
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VITE_API_KEY=
VITE_AUTH_DOMAIN=
VITE_PROJECT_ID=
VITE_STORAGE_BUCKET=
VITE_MESSAGING_SENDER_ID=
VITE_APP_ID=
VITE_VERCEL_API_KEY=
VITE_VERCEL_AUTH_DOMAIN=
VITE_VERCEL_PROJECT_ID=
VITE_VERCEL_STORAGE_BUCKET=
VITE_VERCEL_MESSAGING_SENDER_ID=
VITE_VERCEL_APP_ID=
12 changes: 6 additions & 6 deletions config/firebase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import { getStorage } from 'firebase/storage';

// Your web app's Firebase configuration
const firebaseConfig = {
apiKey: import.meta.env.VITE_API_KEY,
authDomain: import.meta.env.VITE_AUTH_DOMAIN,
projectId: import.meta.env.VITE_PROJECT_ID,
storageBucket: import.meta.env.VITE_STORAGE_BUCKET,
messagingSenderId: import.meta.env.VITE_MESSAGING_SENDER_ID,
appId: import.meta.env.VITE_APP_ID,
apiKey: import.meta.env.VITE_VERCEL_API_KEY,
authDomain: import.meta.env.VITE_VERCEL_AUTH_DOMAIN,
projectId: import.meta.env.VITE_VERCEL_PROJECT_ID,
storageBucket: import.meta.env.VITE_VERCEL_STORAGE_BUCKET,
messagingSenderId: import.meta.env.VITE_VERCEL_MESSAGING_SENDER_ID,
appId: import.meta.env.VITE_VERCEL_APP_ID,
};

// Initialize Firebase
Expand Down
Loading

0 comments on commit 018b1f6

Please sign in to comment.