forked from distalkbot/distalk-voicevox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
42 lines (42 loc) · 1.38 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
{
"name": "distalk",
"description": "Discord TTS on heroku, Powered by VOICEVOX API.",
"repository": "https://github.com/distalkbot/distalk-voicevox",
"keywords": ["python", "discord", "bot"],
"stack": "heroku-20",
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-python.git"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
},
{
"url": "https://github.com/xrisk/heroku-opus.git"
}
],
"env": {
"DISCORD_BOT_TOKEN": {
"description": "Enter your Discord bot token. ボットのトークンを入力します。"
},
"DISCORD_BOT_PREFIX": {
"description": "Enter your prefix. Set 🦑 as your prefix if you leave it blank. ボットのプレフィックスを入力します。空欄にすると「🦑」に設定されます。",
"required": false
},
"VOICEVOX_KEY": {
"description": "Enter your VOICEVOX KEY. VOICEVOXのKEYを入力します。"
},
"VOICEVOX_SPEAKER": {
"description": "Enter the voice type. Set Shikoku Metan Normal if you leave it blank. VOICEVOXの話者IDを入力します。空欄にすると「四国めたん ノーマル」に設定されます",
"required": false
}
},
"addons": [
{
"plan": "heroku-postgresql"
}
],
"scripts": {
"postdeploy": "python init_dict.py"
}
}