-
Notifications
You must be signed in to change notification settings - Fork 33
/
app.json
44 lines (44 loc) · 1.18 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
{
"name": "AI art",
"description": "Discord bot generating collage of 9 images from given prompt",
"repository": "https://github.com/karafra/ai-art",
"logo": "https://raw.githubusercontent.com/karafra/ai-art/main/.github/images/logo.png",
"keywords": [
"node",
"typescript",
"discord",
"bot",
"ai",
"art",
"images",
"automation"
],
"env": {
"TOKEN": {
"description": "Discord bot token",
"required": true
},
"AMQP_URL": {
"description": "URL TO YOUR AMQP INSTANCE",
"required": true
},
"MONGO_URI": {
"description": "URI to your mongodb database",
"required": true
},
"OPEN_API_TOKEN": {
"description": "Api key for open AI (only if you want to use /ai-story story command)",
"required": false
},
"SENTRY_DSN": {
"description": "DSN to sentry for error tracking",
"value": "https://4870ed33904f4d8fabe79658ceda6dee@o970705.ingest.sentry.io/6580305",
"required": true
},
"SENTRY_RELEASE_NAME": {
"description": "Release name for sentry to tract errors",
"value": "42cf45a4397cb8dfeade0dc61518ebe2a0ad549d",
"required": true
}
}
}