forked from Team254/cheesy-parts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
35 lines (35 loc) · 1.09 KB
/
config.json
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
{
"global": {
"db_host": "localhost",
"db_user": "team254",
"db_database": "cheesy_parts",
"port": 9000,
"base_address": "https://parts.team254.com",
"gmail_user": "[email protected]",
"enable_wordpress_auth": true,
"hide_unused_fields": true,
"enable_oauth2": true,
"oauth2_btn_text": "Login in with SSO",
"client_id": "client-id",
"client_secret": "client-secret",
"authorization_endpoint": "",
"token_endpoint": "",
"userinfo_endpoint": "",
"scope": "openid profile email",
"userinfo_fields_email": "email",
"userinfo_fields_first_name": "given_name",
"userinfo_fields_last_name": "family_name",
"userinfo_fields_roles": "roles",
"api_token": "api-token"
},
"dev": {
"db_password": "correcthorsebatterystaple",
"gmail_password": "correcthorsebatterystaple",
"members_url": "http://members.team254.localhost:81/"
},
"prod": {
"db_password": "Encrypted:0iYLP6HuJ7qY1/BtUYAQ+Q==\n",
"gmail_password": "Encrypted:0iYLP6HuJ7qY1/BtUYAQ+Q==\n",
"members_url": "https://members.team254.com"
}
}