You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
freqtrade/docs/includes/release_template.md

38 lines
480 B

# Highlighted changes
- ...
## How to update
As always, you can update your bot using one of the following commands:
### docker-compose
```bash
docker-compose pull
docker-compose up -d
```
### Installation via setup script
``` bash
# Deactivate venv and run
./setup.sh --update
```
### Plain native installation
``` bash
git pull
pip install -U -r requirements.txt
```
<details>
<summary>Expand full changelog</summary>
```
<Paste your changelog here>
```
</details>