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

Latest commit

 

History

History
executable file
·
46 lines (36 loc) · 813 Bytes

README.md

File metadata and controls

executable file
·
46 lines (36 loc) · 813 Bytes

Slack ChatBot

Heroku

Automated approach

Deploy

Manual approach

Clone the repo

$ git clone git@github.com:anaglyph/slack-chatbot.git
$ cd slack-chatbot

Configure and deploy to Heroku

$ heroku create
$ heroku config:set \
    SLACK_BOT_ID= \
    SLACK_BOT_TOKEN= \
    DARKSKY_API_KEY= \
    FORECASTIO_API_KEY= \
    LAT= \
    LNG= \
    READ_WEBSOCKET_DELAY=
$ git push heroku master

Docker

$ docker run -d \
    --name=slack-chatbot \
    -e SLACK_BOT_ID= \
    -e SLACK_BOT_TOKEN= \
    -e DARKSKY_API_KEY= \
    -e FORECASTIO_API_KEY= \
    -e LAT= \
    -e LNG= \
    -e READ_WEBSOCKET_DELAY=
    anaglyph/slack-chatbot