-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.env
More file actions
81 lines (73 loc) · 2.05 KB
/
Copy pathexample.env
File metadata and controls
81 lines (73 loc) · 2.05 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Discord
DISCORD_BOT_TOKEN=
CHANNEL_ID=
# Polling (seconds)
POLL_SECONDS=300
CURSEFORGE_POLL_SECONDS=300
# Modtale API token
# Get your Modtale API token from:
# https://modtale.net/dashboard/developer
MODTALE_API_TOKEN=
# Modtale projects (JSON array)
# Each item supports:
# {
# "project_uuid": "MODTALE_PROJECT_UUID"
# }
#
# Example with ONE project:
# MODTALE_PROJECTS_JSON=[{"project_uuid":"abcd-1234-efgh-5678"}]
#
# Example with MULTIPLE projects:
# MODTALE_PROJECTS_JSON=[
# {"project_uuid":"abcd-1234-efgh-5678"},
# {"project_uuid":"ijkl-9012-mnop-3456"}
# ]
MODTALE_PROJECTS_JSON=[{"project_uuid":"5e9bbea3-0d7f-4365-93df-5e7acfadf0e7"}]
# CurseForge API token (OPTIONAL)
# If provided, the bot will fetch per-file changelogs via the official
# CurseForge API and include them in the Discord embed for new releases.
# If left blank, the bot still works exactly as before -- it will simply
# omit the changelog field from CurseForge release embeds.
# Get your CurseForge API key from:
# https://docs.curseforge.com/rest-api/#an-introduction-to-curseforge
CURSEFORGE_API_TOKEN=
# CurseForge projects (JSON array)
# Each item supports:
# {
# "project_id": "CURSEFORGE_PROJECT_ID",
# "project_slug": "curseforge-project-slug"
# }
#
# Example with ONE project:
# CURSEFORGE_PROJECTS_JSON='[
# {"project_id":"12345","project_slug":"my-mod"}
# ]'
#
# Example with MULTIPLE projects:
# CURSEFORGE_PROJECTS_JSON='[
# {"project_id":"12345","project_slug":"my-mod"},
# {"project_id":"67890","project_slug":"another-mod"}
# ]'
#
CURSEFORGE_PROJECTS_JSON=
# Modifold API token
# Get your Modifold API token from:
# https://modifold.com/settings/api
MODIFOLD_API_TOKEN=
# Modifold projects (JSON array)
# Each item supports:
# {
# "project_slug": "MODIFOLD_PROJECT_SLUG"
# }
#
# Example with ONE project:
# MODIFOLD_PROJECTS_JSON=[{"project_slug":"abcd"}]
#
# Example with MULTIPLE projects:
# MODIFOLD_PROJECTS_JSON=[
# {"project_slug":"abcd"},
# {"project_slug":"ijkl"}
# ]
MODIFOLD_PROJECTS_JSON='[
{"project_slug":"your-modifold-project-slug"}
]'