Quick doc about how to upgrade

fix #804
This commit is contained in:
Yohan Boniface 2023-06-23 18:43:33 +02:00
parent fe80358fd5
commit 93568d6da3

View file

@ -115,3 +115,20 @@ EMAIL_USE_TLS = True
# or
EMAIL_USE_SSL = True
```
## Upgrading
Usually, for upgrading, you need those steps:
```
pip install umap-project --upgrade
umap migrate
umap collectstatic
umap compress
```
Then you need to restart your python server, for example:
```
sudo systemctl restart uwsgi # or gunicorn, or…
```