Skip to content

Commit

Permalink
add prod api keys to firbase prod project
Browse files Browse the repository at this point in the history
  • Loading branch information
rinej committed Sep 13, 2024
1 parent d5503af commit e3bb962
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .env.production
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,7 @@ PUSHER_APP_KEY=268df511a204fbb60884
USE_WEB_PROXY=false
ENVIRONMENT=production
SEND_CRASH_REPORTS=true

FB_API_KEY=AIzaSyDxzigVLZl4G8MP7jACQ0qpmADMzmrrON0
FB_APP_ID=1:921154746561:web:1583e882584cf151027c40
FB_PROJECT_ID=expensify-chat
6 changes: 3 additions & 3 deletions src/CONFIG.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ export default {
GCP_GEOLOCATION_API_KEY: googleGeolocationAPIKey,
USE_REACT_STRICT_MODE: true,
FIREBASE_WEB_CONFIG: {
apiKey: get(Config, 'FB_API_KEY', ''),
appId: get(Config, 'FB_APP_ID', ''),
projectId: get(Config, 'FB_PROJECT_ID', ''),
apiKey: get(Config, 'FB_API_KEY', 'AIzaSyDxzigVLZl4G8MP7jACQ0qpmADMzmrrON0'),
appId: get(Config, 'FB_APP_ID', '1:921154746561:web:7b8213357d07d6e4027c40'),
projectId: get(Config, 'FB_PROJECT_ID', 'expensify-chat'),
},
// to read more about StrictMode see: contributingGuides/STRICT_MODE.md
USE_REACT_STRICT_MODE_IN_DEV: false,
Expand Down

0 comments on commit e3bb962

Please sign in to comment.