-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwrangler.toml.example
67 lines (50 loc) · 1.63 KB
/
wrangler.toml.example
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
# vi:filetype=toml
name = ""
main = "src/index.ts"
compatibility_date = "2022-06-11"
[env.production]
kv_namespaces = [
{ binding = "OAUTH", id = "", preview_id = "" }
]
d1_databases = [
{ binding = "OAUTH_DB", database_name = "", database_id = "00000000-0000-0000-0000-000000000000" }
]
[env.production.vars]
# Expected secrets, managed outside of wrangler.toml:
# BOT_TOKEN
# CLIENT_SECRET
# SENTRY_DSN
CLIENT_ID = "000000000000000000"
CLIENT_PUBLIC_KEY = "0000000000000000000000000000000000000000000000000000000000000000"
REDIRECT_URI = "https://example.com/redirect"
GUILD_ID = "000000000000000000"
DENBEIGH_USER = "000000000000000000"
MOD_ROLE = "000000000000000000"
MEMBER_ROLE = "000000000000000000"
GUEST_ROLE = "000000000000000000"
PENDING_CHANNEL = "000000000000000000"
LOG_CHANNEL = "000000000000000000"
GENERAL_CHANNEL = "000000000000000000"
HOLDING_CHANNEL = "000000000000000000"
ENVIRONMENT = "prod"
[env.dev]
kv_namespaces = [
{ binding = "OAUTH", id = "", preview_id = "" }
]
d1_databases = [
{ binding = "OAUTH_DB", database_name = "", database_id = "00000000-0000-0000-0000-000000000000" }
]
[env.dev.vars]
CLIENT_ID = "000000000000000000"
CLIENT_PUBLIC_KEY = "0000000000000000000000000000000000000000000000000000000000000000"
REDIRECT_URI = "http://localhost:8080/redirect"
GUILD_ID = "000000000000000000"
DENBEIGH_USER = "000000000000000000"
MOD_ROLE = "000000000000000000"
MEMBER_ROLE = "000000000000000000"
GUEST_ROLE = "000000000000000000"
PENDING_CHANNEL = "000000000000000000"
LOG_CHANNEL = "000000000000000000"
GENERAL_CHANNEL = "000000000000000000"
HOLDING_CHANNEL = "000000000000000000"
ENVIRONMENT = "dev"