Resolve "Provide docs to help with migration Debian 10 -> 11"

environments/review-front-deve-otr6gc/deployments/13419
Ciarán Ainsworth 2022-07-27 18:18:29 +00:00
rodzic 09944d6e0e
commit 01c978cdcf
4 zmienionych plików z 26 dodań i 3 usunięć

Wyświetl plik

@ -20,7 +20,7 @@ LOGLEVEL = env("LOGLEVEL", default="info").upper()
"""
Default logging level for the Funkwhale processes
Available levels:
Available levels:
- ``debug``
- ``info``

Wyświetl plik

@ -0,0 +1 @@
Added virtualenv upgrade instructions for Debian (#1562).

Wyświetl plik

@ -15,11 +15,11 @@ We support [Debian](https://debian.org) and Debian-based Linux distributions. Fo
export FUNKWHALE_VERSION={sub-ref}`version`
```
- Install `curl` and `unzip` - utilities used later.
- Install `curl`
```{code} bash
sudo apt update # update apt cache
sudo apt install curl unzip
sudo apt install curl
```
## 1. Install Funkwhale dependencies

Wyświetl plik

@ -2,6 +2,28 @@
If you installed Funkwhale following the [Debian guide](../installation_docs/debian), follow these steps to upgrade.
:::{dropdown} Upgrading to a new version of Python
:icon: alert
:color: warning
If you upgrade your Python version, you need to update your virtualenv. Python is updated with each new version of Debian.
To upgrade your virtualenv:
1. Change to your api directory.
```{code-block} bash
cd /srv/funkwhale/api
```
2. Rerun `poetry install` to reinstall your dependencies in a new virtualenv.
```{code-block} bash
poetry install
```
:::
## Download the updated files
1. SSH into your server.