forked from WiiLink24/Checkout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig_example.py
More file actions
33 lines (28 loc) · 920 Bytes
/
Copy pathconfig_example.py
File metadata and controls
33 lines (28 loc) · 920 Bytes
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
db_url = "postgresql://username:password@localhost/nc"
cmoc_db_url = "postgresql://username:password@localhost/cmoc"
evc_db_url = "postgresql://username:password@localhost/evc"
cam_server_db_url = "postgresql://username:password@localhost/cam_server"
checkout_db_url = "postgresql://username:password@localhost/checkout"
redis_host = "localhost"
redis_password = ""
# Used to secure the web panel.
secret_key = "please_change_thank_you"
# Authentik API configuration
authentik_api_url = ""
authentik_service_account_token = ""
# Authentik group (uuid) allowed to manage coupons.
coupon_admin_group_uuid = ""
# OpenID Connect configuration
oidc_redirect_uri = ""
oidc_client_secrets_json = {
"web": {
"client_id": "",
"client_secret": "",
"auth_uri": "",
"token_uri": "",
"userinfo_uri": "",
"issuer": "",
"redirect_uris": "",
}
}
oidc_logout_url = ""