leastbot
Scratching an itch.
Release Process
- Ensure all tickets for the target release milestone are closed except for the release capstone ticket which is always titled: Release N.N
- Ensure the unittest coverage looks good.
- Edit
./setup.py
to set the version to N.N, and commit this. - Install this on a staging test system and do some (FIXME: Which?) smoke tests.
- Tag the revision as
release-N.N
and push the tag to github. - Run:
./setup.py sdist --upload --sign --identity $YOUR_CODE_SIGNING_PGP_ID
- Create a new virtual env and run
pip install leastbot
. Check the installation was successful and has the right version (FIXME: How?). - Close the capstone ticket, which is the only remaining ticket in the milestone.
- Bonus: Send announcements.
Recommended Deployment on Debian-like
-
Install system-wide recent virtualenv as per these instructions.
-
install C build stuff for dependencies:
sudo apt-get install build-essential python-dev libffi-dev
-
Create a specific user:
sudo adduser --disabled-password leastbot
-
Become that user:
sudo su - leastbot
-
Create and activate a virtualenv for leastbot and its dependencies:
mkdir ./leastbotvenv virtualenv ./leastbotvenv source ./leastbotvenv/bin/activate
-
Install service_identity for some weird reason I don't quite understand but seems related to the python cryptography package:
pip install service_identity
-
Install leastbot from pypi (into the activated virtualenv):
pip install leastbot
-
Run leastbot to see an error message about how the secret config file is missing:
leastbot
-
Cut and paste the output of the last command into the path it specifies, then edit that file to fit your secret credentials (one for github, one for irc).
(Also, you probably want to make this file readable only by the leastbot user.)
-
Repeat the "missing config" process for the public config:
leastbot
-
Cut, paste, edit, public config.
-
Finally, run leastbot, which should succeed and connect to irc:
leastbot
Warning
The default commandline is equivalent to
leastbot --log-level DEBUG
which is very verbose and includes all messages to a channel. Be aware of the confidentiality and space impact. I believe thatleastbot --log-level INFO
will be relatively concise and privacy-preserving. Caveat emptor. -
Verify leastbot has joined the expected irc channel by viewing its log output and also by joining the channel with another irc client and observing the channel roster and/or join notifications.
-
Go configure github webhook notifications to point to your leastbot web port. Test them by clicking test buttons.
TODO
Improve this part of the instructions.