From 9e384c61e8dd349b42100d0aa6597cd2bf93ee90 Mon Sep 17 00:00:00 2001 From: Eric Duminil Date: Sat, 20 Sep 2025 16:24:19 +0200 Subject: [PATCH] Fix Markdown formatting of DEVELOPER_SETUP.md --- DEVELOPER_SETUP.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/DEVELOPER_SETUP.md b/DEVELOPER_SETUP.md index 819d8871a..4ce1e0933 100644 --- a/DEVELOPER_SETUP.md +++ b/DEVELOPER_SETUP.md @@ -95,11 +95,11 @@ curl -LsSf https://astral.sh/uv/install.sh | sh Then create the virtual environment and install the dependencies using uv: -````sh +```sh uv venv source .venv/bin/activate uv sync --all-extras --dev -`` +``` #### - Spin up the database and other services @@ -109,7 +109,7 @@ docker compose up -d #### - Run the backend -*\_\_*Migrations will be run automatically when running the backend.\_\_\* +_Migrations will be run automatically when running the backend._ ```sh cd backend @@ -169,7 +169,8 @@ docker exec -i romm-db-dev mariadb -uroot -p < backend/romm_test/ ### - Run tests -*\_*Migrations will be run automatically when running the tests.\_\_\_ +_Migrations will be run automatically when running the tests._ + ```sh cd backend @@ -179,4 +180,3 @@ uv run pytest [path/file] # the -vv switch increases the verbosity of the output, providing more detailed information during test execution. uv run pytest -vv ``` -````