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.