mirror of
https://github.com/Syping/dtranslatebot.git
synced 2024-11-22 05:40:23 +01:00
improve configuration example
This commit is contained in:
parent
12e81ed24c
commit
8cf9b6af94
2 changed files with 39 additions and 35 deletions
37
etc/dtranslatebot.example.json
Normal file
37
etc/dtranslatebot.example.json
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
{
|
||||||
|
"guilds": {
|
||||||
|
"$guild1_id": {
|
||||||
|
"$channel1_id": {
|
||||||
|
"source": "en",
|
||||||
|
"target": "de",
|
||||||
|
"webhook": "https://discord.com/api/webhooks/$guild1_de_webhook_id/$guild1_de_webhook_token"
|
||||||
|
},
|
||||||
|
"$channel2_id": {
|
||||||
|
"source": "de",
|
||||||
|
"target": "en",
|
||||||
|
"webhook": "https://discord.com/api/webhooks/$guild1_en_webhook_id/$guild1_en_webhook_token"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"My Discord Guild": {
|
||||||
|
"id": $guild2_id,
|
||||||
|
"General English": {
|
||||||
|
"id": $channel3_id,
|
||||||
|
"source": "en",
|
||||||
|
"target": {
|
||||||
|
"de": "https://discord.com/api/webhooks/$guild2_de_webhook_id/$guild2_de_webhook_token",
|
||||||
|
"fr": "https://discord.com/api/webhooks/$guild2_fr_webhook_id/$guild2_fr_webhook_token"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"preferred_lang": ["en", "de", "fr", ...],
|
||||||
|
"storage": "$working_directory",
|
||||||
|
"user": {
|
||||||
|
"avatar_size": 256
|
||||||
|
},
|
||||||
|
"token": "$bot_token",
|
||||||
|
"translator": {
|
||||||
|
"url": "http://127.0.0.1:5000/",
|
||||||
|
"apiKey": ""
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,40 +1,7 @@
|
||||||
{
|
{
|
||||||
"guilds": {
|
"token": "",
|
||||||
"$guild1_id": {
|
|
||||||
"$channel1_id": {
|
|
||||||
"source": "en",
|
|
||||||
"target": "de",
|
|
||||||
"webhook": "https://discord.com/api/webhooks/$guild1_de_webhook_id/$guild1_de_webhook_token"
|
|
||||||
},
|
|
||||||
"$channel2_id": {
|
|
||||||
"source": "de",
|
|
||||||
"target": "en",
|
|
||||||
"webhook": "https://discord.com/api/webhooks/$guild1_en_webhook_id/$guild1_en_webhook_token"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"My Discord Guild": {
|
|
||||||
"id": "$guild2_id",
|
|
||||||
"General English": {
|
|
||||||
"id": "$channel3_id",
|
|
||||||
"source": "en",
|
|
||||||
"target": {
|
|
||||||
"de": "https://discord.com/api/webhooks/$guild2_de_webhook_id/$guild2_de_webhook_token",
|
|
||||||
"fr": "https://discord.com/api/webhooks/$guild2_fr_webhook_id/$guild2_fr_webhook_token"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"preferred_lang": ["en", "de", "fr", ...],
|
|
||||||
"storage": "$working_directory",
|
|
||||||
"user": {
|
|
||||||
"avatar_size": 256
|
|
||||||
},
|
|
||||||
"token": "$bot_token",
|
|
||||||
"translator": {
|
"translator": {
|
||||||
"hostname": "127.0.0.1",
|
"url": "http://127.0.0.1:5000/",
|
||||||
"port": 80,
|
|
||||||
"url": "/",
|
|
||||||
"tls": false,
|
|
||||||
"apiKey": ""
|
"apiKey": ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue