Skip to content

Commit

Permalink
Heroku deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
orliesaurus committed Apr 19, 2015
1 parent 9e18dd9 commit 9abd72f
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 1 deletion.
1 change: 1 addition & 0 deletions Procfile
@@ -0,0 +1 @@
worker: python bot.py
7 changes: 6 additions & 1 deletion README.md
Expand Up @@ -15,4 +15,9 @@ virtualenv greetingslack
pip install requests
pip install websocket-client
python bot.py &
```
```

#Heroku
Deploy with a click supported now
[![Deploy](https://www.herokucdn.com/deploy/button.png)](https://heroku.com/deploy)

24 changes: 24 additions & 0 deletions app.json
@@ -0,0 +1,24 @@
{
"name": "GreetingSlack"
"description": "This app connects to your slack team and greets new joiners with a custom msg"
"keywords": [
"productivity",
"Slack",
"bot"
],
"website": "https://github.com/orliesaurus/greetingslack",
"repository": "https://github.com/orliesaurus/greetingslack",
"logo": "none",
"env": {
"SLACK-TOKEN": {
"description": "Your Slack API Token",
"value": "1234-12314123123-123123123",
"required": true
},
"WELCOME-MESSAGE": {
"description": "Your Welcome message string",
"value": "A personalized welcome msg that is broadcasted to your Slack Users"
}
}

}
5 changes: 5 additions & 0 deletions requirements.txt
@@ -0,0 +1,5 @@
backports.ssl-match-hostname==3.4.0.2
requests==2.6.0
six==1.9.0
websocket-client==0.29.0
wsgiref==0.1.2

0 comments on commit 9abd72f

Please sign in to comment.