From d8c65d5b02a7d43209fb903adc5a706c50307632 Mon Sep 17 00:00:00 2001 From: Stella Alice Schlotter Date: Tue, 26 Oct 2021 21:49:38 +0200 Subject: [PATCH] in wsl the redis server has to be started manually because systemd is usually not available per default. --- CHANGELOG.md | 1 + site/content/en/docs/contributing/development-environment.md | 3 +++ 2 files changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d35a038ab85..456705f50f73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,6 +45,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed dextr deployment () - Migration of `dataset_repo` application () - Helm settings for external psql database were unused by backend () +- Updated WSL setup for development () ### Security diff --git a/site/content/en/docs/contributing/development-environment.md b/site/content/en/docs/contributing/development-environment.md index bd51c0f1351a..3e344c33a8fb 100644 --- a/site/content/en/docs/contributing/development-environment.md +++ b/site/content/en/docs/contributing/development-environment.md @@ -110,3 +110,6 @@ You develop CVAT under WSL (Windows subsystem for Linux) following next steps. ``` - Run all commands from this installation guide in WSL Ubuntu shell. +- You might have to manually start the redis server in wsl before you can start the configuration inside + Visual Studio Code. You can do this with `sudo service redis-server start`. Alternatively you can also + use a redis docker image instead of using the redis-server locally.