-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.example.py
64 lines (45 loc) · 1.7 KB
/
config.example.py
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
# coding=utf-8
# Stripe Config
# noinspection SpellCheckingInspection
STRIPE_PUBLIC_API_KEY = \
'pk_test_kt4g09qj35ny9g3qh8j98rgj5n4q89er0hnug5q8iqg4h094qi3vpvjq34npre9a8ghnvq34ap8ehng4vq38p9hinb9q348phn9'
# noinspection SpellCheckingInspection
STRIPE_PRIVATE_API_KEY = \
'sk_test_4q307g8yhfq34870hb3g08q47hgq3489juv083q7hng807q3h08vnq375n0g897fhcjn8704gnv03q894uerjf893q4hcn90q34'
STRIPE_WEBHOOK_SECRET = \
'whsec_0490530302958094286791359083409670391844096702937509813590724609'
# Discord Config
# noinspection SpellCheckingInspection
DISCORD_SECRET_KEY = 'gjanperiuj4309jg43n0g409i42g0nhj'
# noinspection SpellCheckingInspection
DISCORD_CLIENT_ID = "696969696969696969"
# noinspection SpellCheckingInspection
SUPPORT_SERVER_ID = "696969696969696969"
# Bot API Config
BOT_API_URL = "http://localhost:6969"
# noinspection SpellCheckingInspection
BOT_API_TOKEN = "token"
# General Config
DEBUG = True
# noinspection SpellCheckingInspection
SITE_URL = "http://127.0.0.1:5000"
# noinspection SpellCheckingInspection
SECRET_KEY = "secret"
DATABASE_URI_DEBUG = "sqlite:////tmp/db.sqlite"
DATABASE_URI_PROD = "postgres://user:user@localhost:5432/scripty"
BOT_PERMISSIONS_INTEGER = 395744504896
# noinspection SpellCheckingInspection
DISCORD_INVITE_SUCCESS_WEBHOOK_URL = "https://discord.com/api/webhooks/1039374788768059403" \
"/Xf9Jl2zFwiCBQVFnuhjyV6P0ZEJyRYjF_oeipYBNYNkqP1a7xbBr7YFpwh-DNBjrhy2w"
# noinspection SpellCheckingInspection
TIERS = [
{
"name": "Tier 1",
"weekly_price": 1.00,
"monthly_price": 4.00,
"yearly_price": 48.00,
"base_lookup_key": "t1",
"product_id": "prod_g4j209ih5309j2",
"level_int": 1,
}
]