https://github.com/errbotio/err-backend-campfire
This is the campfire backend for errbot
https://github.com/errbotio/err-backend-campfire
Last synced: 10 months ago
JSON representation
This is the campfire backend for errbot
- Host: GitHub
- URL: https://github.com/errbotio/err-backend-campfire
- Owner: errbotio
- License: gpl-3.0
- Created: 2015-07-22T17:48:54.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2016-06-06T23:18:18.000Z (almost 10 years ago)
- Last Synced: 2025-07-05T22:36:16.940Z (10 months ago)
- Language: Python
- Size: 125 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
This is a backend for campfire (https://campfirenow.com/) for err (http://errbot.net) 2.3.0-rc3 or newer.
Note: as of writing, this backend is only compatible with Python 2.7
## Installation
```
git checkout https://github.com/gbin/err-backend-campfire.git
pip install pyfire
```
and add:
```
BACKEND = 'Campfire'
BOT_EXTRA_BACKEND_DIR = '/path_to/err-backend-campfire'
```
to your config.py
## Authentication
You need to set your BOT_IDENTITY in your config.py as this:
```
BOT_IDENTITY = {
'subdomain': 'yatta',
'username' : 'errbot',
'password' : 'changeme',
}
```
Also the BOT_ADMINS setting needs to be the full name of the user like:
BOT_ADMINS = ('Guillaume Binet',)
CHATROOM_RELAY is unsupported by this backend, you should leave it empty.
## Contributing
1. Fork it!
2. Create your feature branch: `git checkout -b my-new-feature`
3. Commit your changes: `git commit -am 'Add some feature'`
4. Push to the branch: `git push origin my-new-feature`
5. Submit a pull request :D