Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Add a Heroku Button for easy deployments #28

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ the Heroku toolbelt already):

All config options are loaded from the environment variables and data is stored in Redis.

[![Deploy](https://www.herokucdn.com/deploy/button.png)](https://heroku.com/deploy)

## Adding integrations

Expand Down
28 changes: 28 additions & 0 deletions app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "Hammock",
"description": "Run Slack integrations on your own server.",
"keywords": [
"productivity",
"chat",
"Slack"
],
"website": "https://slack.com/",
"repository": "https://github.com/tinyspeck/hammock",
"logo": "https://cdn.rawgit.com/tinyspeck/hammock/master/images/logo.png",
"env": {
"BUILDPACK_URL": "https://github.com/heroku/heroku-buildpack-php.git#redis",
"HAMMOCK_ROOT": {
"description": "URL to this app. You can set this later.",
"required": false
},
"HAMMOCK_CLIENT_ID": {
"description": "Your Slack client ID."
},
"HAMMOCK_CLIENT_SECRET": {
"description": "Your Slack client secret."
}
},
"addons": [
"redistogo"
]
}