-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json5
More file actions
18 lines (16 loc) · 857 Bytes
/
config.json5
File metadata and controls
18 lines (16 loc) · 857 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
// Pals birthday bot config
// config adheres to https://json5.org/ so comments/trailing commas are allowed
"guild_id": 694653665071595573, // test server
"birthday_role":1435030537822539966, // test server
"birthdays": [
// id: discord id, m: month, d:day, tz:timezone
// id is a discord snowflake, decimal encoded
// month and day are their numerical value, 1-indexed (i.e. january is 1, not zero)
// do not include leading zeros in numbers per json spec
// timezone IDs adhere to IANA tzdb standard https://en.wikipedia.org/wiki/List_of_tz_database_time_zones so that code can automatically handle daylight savings
// Jake
{"id":115115365935087623, "m":10, "d":28, "tz":"America/New_York"},
// other users removed for privacy. message me if you want to be added/removed from the config running in prod
]
}