-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathapp.json
More file actions
37 lines (37 loc) · 929 Bytes
/
app.json
File metadata and controls
37 lines (37 loc) · 929 Bytes
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
{
"name": "OTP Verification",
"description": "Verify Accounts by OTP (OneTimePhone)",
"keywords": [
"OTP",
"OneTimePhone",
"Verify",
"Accounts"
],
"repository": "https://github.com/FuckingToasters/OTP-Verification-Bot",
"author": "Fuckingtoasters",
"contributors": [
"Fuckingtoasters"
],
"version": "1.0.0",
"license": "MIT",
"env": {
"DATABASE_URL": {
"description": "Place the MongoDB Connection URL you find on their Website here",
"default": "mongodb://localhost:27017/",
"required": true,
"type": "string"
},
"COLLECTION_NAME": {
"description": "Place the Collection Name here (choose anything)",
"default": "users",
"required": true,
"type": "string"
},
"DISCORDBOT_TOKEN": {
"description": "Place the Discord Bot Token here",
"default": "",
"required": true,
"type": "string"
}
}
}