-
Notifications
You must be signed in to change notification settings - Fork 6
/
app.json
84 lines (83 loc) · 3.04 KB
/
app.json
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
82
83
84
{
"name": "seven-server",
"description": "Seven's Node.js app, packaged for Heroku",
"repository": "https://github.com/Propolisa/Seven",
"logo": "https://raw.githubusercontent.com/Propolisa/Seven/master/branding/seven_thumb_256.png",
"keywords": ["node", "hackthebox", "discord.js"],
"addons": [
{
"plan": "heroku-postgresql:hobby-dev",
"as": "DATABASE"
}
],
"env": {
"BOT_TOKEN": {
"description": "Your Discord bot credential, acquired from the Developer Portal.",
"value": ""
},
"HTB_TOKEN": {
"description": "The legacy (V3) HTB API token (turn on legacy interface to get this)",
"value": ""
},
"HTB_EMAIL": {
"description": "Your Hack The Box login email address.",
"value": ""
},
"HTB_PASS": {
"description": "Your personal Hack The Box password (consider resetting this to a secure random one, for bot usage)",
"value": ""
},
"HTB_V4_TOKEN": {
"description": "The new (V4) App Token (generate one in your profile settings)",
"value": ""
},
"GOOGLE_APPLICATION_CREDENTIALS": {
"description": "The JSON credential file from GCP for the DialogFlow project's API user, as a string.",
"value": ""
},
"GOOGLE_CLOUD_PROJECT": {
"description": "The short name / tag that uniquely identifies your DialogFlow project on GCP, e.g. 'seven-huqce'.",
"value": ""
},
"ADMIN_DISCORD_IDS": {
"description": "The IDs of the Discord user who will have administrator access to the bot (probably you!). A JSON array of Discord ID strings.",
"value": ""
},
"CAPTAIN_DISCORD_IDS": {
"description": "The IDs of the Discord user who will have captain-level access to the bot (probably you!). A JSON array of Discord ID strings.",
"value": ""
},
"DISCORD_GUILD_ID": {
"description": "The HTB Team's Discord guild ID.",
"value": ""
},
"DISCORD_ANNOUNCE_CHAN_ID": {
"description": "The ID of the channel (e.g. 'bot') where Seven can send notifications. (Omit if announcements are not desired)",
"required": false,
"value": ""
},
"EMOJI_GUILD_ID": {
"description": "The ID of the Guild (e.g. 'Seven-Emoji') which Seven can use for storing and retrieving custom emoji.",
"value": "",
"required": false
},
"HTB_TEAM_ID": {
"description": "𝗧𝗘𝗔𝗠 𝗠𝗢𝗗𝗘: The team's ID on HTB (get from the public team profile URL). 𝘐𝘧 𝘢 𝘶𝘯𝘪𝘷𝘦𝘳𝘴𝘪𝘵𝘺, 𝘭𝘦𝘢𝘷𝘦 𝘣𝘭𝘢𝘯𝘬.",
"value": "",
"required": false
},
"HTB_UNIVERSITY_ID": {
"description": "𝗨𝗡𝗜𝗩𝗘𝗥𝗦𝗜𝗧𝗬 𝗠𝗢𝗗𝗘: The university's ID on HTB (get from the public uni profile URL). 𝘐𝘧 𝘢 𝘵𝘦𝘢𝘮, 𝘭𝘦𝘢𝘷𝘦 𝘣𝘭𝘢𝘯𝘬.",
"value": "",
"required": false
},
"IS_HEROKU": {
"description": "Indicates to the Node app that Seven is running on Heroku (suppressing certain dev tools).",
"value": "true"
},
"ACCEPT_HIGHCHARTS_LICENSE": {
"description": "Pre-accepts the Highcharts Export Server license for silent deployment.",
"value": "YES"
}
}
}