diff --git a/README.md b/README.md index a5f9205..bb8340c 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,8 @@ The functionality we wanted to achieve with Slackbot and the mission of Auriga c ## Usage +[![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy) + ![](./docs/img/usage.png) 1. Call Auriga in a thread like `@Auriga :reaction:` and specify the reaction. @@ -51,4 +53,4 @@ make lint #lint ## Licenses -Auriga is licensed under the Apache License, Version 2.0. See [LICENSE](./LICENSE) for the full license text. \ No newline at end of file +Auriga is licensed under the Apache License, Version 2.0. See [LICENSE](./LICENSE) for the full license text. diff --git a/app.json b/app.json new file mode 100644 index 0000000..529465c --- /dev/null +++ b/app.json @@ -0,0 +1,30 @@ +{ + "name": "Auriga", + "description": "Slackbot to make your scheduling smoothly", + "repository": "https://github.com/moneyforward/auriga", + "keywords": ["Google Calendar", "Slack", "Bot"], + "env": { + "SLACK_BOT_TOKEN": { + "description": "Slack bot token, for more detail see https://api.slack.com/bot-users", + "required": true + }, + "SLACK_APP_TOKEN": { + "description": "Slack app token, for more detail see https://api.slack.com/bot-users", + "required": true + } + }, + "formation": { + "web": { + "quantity": 0 + }, + "worker": { + "quantity": 1, + "size": "hobby" + } + }, + "buildpacks": [ + { + "url": "heroku/go" + } + ] +}