Arthuchaut / clue

A Slack developer bot assistant.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

clue

A Slack developer bot assistant.

Configuration

It's strongly recommanded to use this app with the virtual environment.
Follow those commands to initialize venv:

On windows

python -m venv venv
venv\Scripts\activate

On Linux

python3 -m virtualenv venv
venv/bin/activate

Once your venv is activate, you must upgrade PyPi:

On windows

venv\Scripts\python -m pip install --upgrade pip

On Linux

venv/bin/python3 -m pip3 install --upgrade pip3

Now, install all required dependencies:

On windows

venv\Scripts\pip install -r requirements.txt

On Linux

venv/bin/pip3 install -r requirements.txt

Then, you have to unlock your config file:

mv config.yml.lock config.yml

Next, replace your bot api key to the api.slack.token key in the config.yml file.

The application is now setted up !

Running

Run the bot with the following command:

On Windows:

venv\Scripts\python main.py

On Linux:

venv/bin/python3 main.py

About

A Slack developer bot assistant.

License:MIT License


Languages

Language:Python 100.0%