-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserverPrivacy.js
More file actions
51 lines (48 loc) · 1.04 KB
/
serverPrivacy.js
File metadata and controls
51 lines (48 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
39
40
41
42
43
44
45
46
47
48
49
50
const dbID = "";
const dbPW = "";
const dbHOST = "";
const database = "";
const naverClientID = "";
const naverClientSecret = "";
const kakaoClientID = "";
const kakaoClientSecret = "";
const googleClientID = "";
const googleClientSecret = "";
const domain = "";
const AppVersion = "";
const ReactVersion = "";
const APIVersion = "";
const fcmInfo = {
"type": "",
"project_id": "",
"private_key_id": "",
"private_key":""
"client_email":""
"client_id": ""
"auth_uri": ""
"token_uri": ""
"auth_provider_x509_cert_url": ""
"client_x509_cert_url": ""
"universe_domain":""
}
module.exports = {
client : "",
connection:{
user : dbID,
password : dbPW,
host : dbHOST,
database : database
},
jwtKey : "",
naverClientID : naverClientID,
naverClientSecret : naverClientSecret,
kakaoClientID : kakaoClientID,
kakaoClientSecret : kakaoClientSecret,
googleClientID : googleClientID,
googleClientSecret : googleClientSecret,
domain : domain,
AppVersion : AppVersion,
ReactVErsion : ReactVersion,
APIVersion : APIVersion,
fcmInfo : fcmInfo
}