-
-
Notifications
You must be signed in to change notification settings - Fork 19
Upgrading Harambot
DMcP89 edited this page Aug 9, 2024
·
1 revision
Upgrading your harambot instance to the latest version is a fairly straight forward process.
This guide is intended only for those who are running their own instance of harambot. The public version of harambot is updated automatically with each release.
docker pull dmcp89/harambot@latest
pip install harambot --upgrade
Datebase migrations are changes to the database that harambot uses. These can be things like add new fields or changing default values.
The release notes for each version will detail if there are any migrations that need to be run for that release
export RUN_MIGRATIONS=True
This envrionment variable instructs harambot to run the available migrations before starting up.
Once the steps above are complete you can start up harambot as normal. See Running harambot for more details.