Skip to content
This repository has been archived by the owner on Feb 26, 2020. It is now read-only.

Latest commit

 

History

History
28 lines (16 loc) · 624 Bytes

upgrade.rst

File metadata and controls

28 lines (16 loc) · 624 Bytes

Upgrading

bash

Before upgrading Varda, stop the currently running server and Celery workers. Then, update your copy of the source code (using for example git pull on an existing git clone).

Make sure to install any new requirements:

$ pip install -r requirements.txt

Now install the new version:

$ python setup.py install

Managing database migrations is done using Alembic. This command will move your database to the latest schema:

$ alembic upgrade head

You can now restart the server and Celery workers.