-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment.dummy.js
More file actions
38 lines (31 loc) · 1.04 KB
/
environment.dummy.js
File metadata and controls
38 lines (31 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
const environments = {
staging: {
FIREBASE_API_KEY: '',
FIREBASE_AUTH_DOMAIN: '',
FIREBASE_DATABASE_URL: '',
FIREBASE_PROJECT_ID: '',
FIREBASE_STORAGE_BUCKET: '',
FIREBASE_MESSAGING_SENDER_ID: '',
FIREBASE_APP_ID: '',
FIRBASE_MESUREMENT_ID: '',
GOOGLE_CLOUD_VISION_API_KEY: '',
},
production: {
// Warning: This file still gets included in your native binary and is not a secure way to store secrets if you build for the app stores. Details: https://github.com/expo/expo/issues/83
},
};
function getEnvironment(env) {
return environments[env];
}
export const Environment = getEnvironment('staging');
export const NAVER_APP_ID = '';
export const NAVER_APP_SECRET = '';
export const NAVER_STATE_STRING = '';
export const NAVER_MAP_API_ID = '';
export const NAVER_MAP_API_SECRECT = '';
export const GOOGLE_CLIENT_ID = '';
export const GOOGLE_CLIENT_SECRET = '';
export const FACEBOOK_APP_ID = '';
export const FACEBOOK_APP_SECRET = '';
export const KAKAO_REST_ID = '';
export const KAKAO_CLIENT_SECRET = '';