yaser24276 / askbot-slack

Simple Slack integration for Askbot. When a question, comment or answer is posted to Askbot, a specific Slack channel is sent a message..

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

askbot-slack

A basic Askbot integration with Slack. When a question, comment or answer is posted to Askbot, a specific Slack channel is sent a message that looks like this:

Askbot Slack Hook

Up and Running In Three Easy Steps

Step 1 - Install Using Pip

pip install askbot_slack

Step 2 - Alter Askbot's settings.py

Add 'askbot_slack.SlackMiddleware' to MIDDLEWARE_CLASSES of settings.py in the Askbot install directory.

Step 3 - Configure Slack integration parameters

Parameters are available in Askbot's settings -> external services -> Slack integration

Alternatively, specify the following settings in the settings.py, with the corresponding values:

ASKBOT_SLACK_ENABLED = True
ASKBOT_SLACK_USERNAME = '...'
ASKBOT_SLACK_CHANNEL = '#...'
ASKBOT_SLACK_WEBHOOK_URL = '...'

About

Simple Slack integration for Askbot. When a question, comment or answer is posted to Askbot, a specific Slack channel is sent a message..

License:MIT License


Languages

Language:Python 100.0%