From 93568d6da3e7b964426283dc8d8dbbe38b8a669e Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Fri, 23 Jun 2023 18:43:33 +0200 Subject: [PATCH] Quick doc about how to upgrade fix #804 --- docs/install.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/install.md b/docs/install.md index 2254cb39..87e573ee 100644 --- a/docs/install.md +++ b/docs/install.md @@ -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… +```