-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings.secret.json.sample
executable file
·77 lines (76 loc) · 2.09 KB
/
settings.secret.json.sample
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// STRAUTOMATOR SECRET SETTINGS (SAMPLE)
// This is a sample with some of the keys that you need to set yourself via
// a settings.secret.json file (on the application root). Please note that
// the file settings.secret.json is automatically encrypted during the
// application startup, using the key defined on the $SMU_CRYPTO_KEY
// environment variable, which you must set manually.
{
"api": {
"url": "https://my-cloudflare-domain.com/api/"
},
"app": {
"url": "https://my-cloudflare-domain.com/"
},
"gcp": {
"projectId": "my-gcp-project-id",
},
"github": {
"api": {
"token": "Personal access token from GitHub",
"urlToken": "URL specific token to validate webhook calls"
}
},
"locationiq": {
"token": "location IQ token"
},
"mailer": {
"smtp": {
"auth": {
"user": "My Amazon SES SMTP user",
"pass": "My Amazon SES SMTP pass"
}
}
},
"maps": {
"api": {
"key": "Google Maps API key from GCP"
}
},
"musixmatch": {
"api": {
"key": "musixmatch API key"
}
},
"paypal": {
"api": {
"clientId": "PayPal Client ID (for payments integration)",
"clientSecret": "PayPal Client Secret (for payments integration)"
}
},
"spotify": {
"api": {
"clientId": "Spotify Client ID",
"clientSecret": "Spotify Client Secret"
}
},
"strava": {
"api": {
"clientId": "Strava Client ID",
"clientSecret": "Strava Client secret"
}
},
"weather": {
"tomorrow": {
"secret": "Tomorrow API key"
},
"openweathermap": {
"secret": "OpenWeatherMap API key"
},
"visualcrossing": {
"secret": "VisualCrossing API key"
},
"weatherapi": {
"secret": "WeatherAPI API key"
}
}
}