forked from topeterk/HitCounterManager
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathappsettings.json.example
More file actions
47 lines (47 loc) · 2.28 KB
/
Copy pathappsettings.json.example
File metadata and controls
47 lines (47 loc) · 2.28 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
{
"ApiSettings": {
"GetGoogleCredentials_ApiGateWay": "https://TU-API-GATEWAY.amazonaws.com/TU-RUTA/GetGoogleDriveCredentials"
},
"GoogleOAuthCredentials": {
"installed": {
"client_id": "TU-CLIENT-ID.apps.googleusercontent.com",
"project_id": "TU-PROJECT-ID-GOOGLE-CLOUD",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://oauth2.googleapis.com/token",
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"client_secret": "TU-CLIENT-SECRET",
"redirect_uris": [ "http://localhost" ]
}
},
"IAMJson": {
"Google": {
"type": "service_account",
"project_id": "TU-PROJECT-ID-GOOGLE-CLOUD",
"private_key_id": "TU-PRIVATE-KEY-ID",
"private_key": "-----BEGIN PRIVATE KEY-----\nPEGA_AQUI_LA_CLAVE_PRIVADA_EN_UNA_SOLA_LINEA_CON_ESCAPES_N\n-----END PRIVATE KEY-----\n",
"client_email": "tu-cuenta-de-servicio@TU-PROJECT-ID.iam.gserviceaccount.com",
"client_id": "TU-CLIENT-ID-NUMERICO",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://oauth2.googleapis.com/token",
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/tu-cuenta-de-servicio%40TU-PROJECT-ID.iam.gserviceaccount.com",
"universe_domain": "googleapis.com"
},
"FireBase": {
"type": "service_account",
"project_id": "TU-PROJECT-ID-FIREBASE",
"private_key_id": "TU-PRIVATE-KEY-ID",
"private_key": "-----BEGIN PRIVATE KEY-----\nPEGA_AQUI_LA_CLAVE_PRIVADA_EN_UNA_SOLA_LINEA_CON_ESCAPES_N\n-----END PRIVATE KEY-----\n",
"client_email": "firebase-adminsdk-xxxxx@TU-PROJECT-ID.iam.gserviceaccount.com",
"client_id": "TU-CLIENT-ID-NUMERICO",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://oauth2.googleapis.com/token",
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/firebase-adminsdk-xxxxx%40TU-PROJECT-ID.iam.gserviceaccount.com",
"universe_domain": "googleapis.com"
}
},
"GitHubApi": {
"PublicRepoToken": "token ghp_TU_PERSONAL_ACCESS_TOKEN_AQUI"
}
}