From 08d22f9e4494056404e7456edeaebbe90d452b7e Mon Sep 17 00:00:00 2001 From: Konstantin Zhukov Date: Wed, 13 May 2026 18:30:07 +0200 Subject: [PATCH] add missing migrate step --- src/pages/contributing/getting-started.mdx | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/pages/contributing/getting-started.mdx b/src/pages/contributing/getting-started.mdx index 9686d07..30b3e60 100644 --- a/src/pages/contributing/getting-started.mdx +++ b/src/pages/contributing/getting-started.mdx @@ -78,15 +78,20 @@ docker compose up -d Keep this running in a separate terminal. -

Step 4: Start the application

+

Step 4: Run database migrations

+```bash + make migrate +``` + +

Step 5: Start the application

Run this command to start the backend: ```bash -make +make run ``` -`make` will only work sequentially after `docker compose up -d`. +Run "make run" only after "docker compose up -d" and "make migrate" have both completed, in that order.