Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Auriga is licensed under the Apache License, Version 2.0. See [LICENSE](./LICENSE) for the full license text.
30 changes: 30 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
}