-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
20 lines (20 loc) · 971 Bytes
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "SRT-PO Converter",
"description": "A simple Telegram bot, which converts SRT files into PO files and back, replacing new line characters with a special text tag.",
"env": {
"TELEGRAM_TOKEN": {
"description": "If you don't have one, send a message to @BotFather in Telegram and create a new bot."
},
"SECRET": {
"description": "A secret key to use as a path for Telegram webhooks.",
"generator": "secret"
},
"ENV": {
"description": "Environment the application is running in. Use 'production' to run in a production mode, webhooks will be used then.",
"value": "production"
},
"URL": {
"description": "A URL of your Heroku app: \"https://<app-name>.herokuapp.com\". For example, if your app name is \"my-cool-srt-converter\", the URL should be \"https://my-cool-srt-converter.herokuapp.com\". You can change it later on the app page under \"Settings\" -> \"Reveal Config Vars\"."
}
}
}