From 4309a55c8bdc0d2de725280dd861e9d8a76d6705 Mon Sep 17 00:00:00 2001 From: Sean Hau Goh <157082021+Ruler10123@users.noreply.github.com> Date: Tue, 28 Jan 2025 14:24:11 -0600 Subject: [PATCH] Update onboarding.md --- src/pages/posts/onboarding.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/posts/onboarding.md b/src/pages/posts/onboarding.md index d02767d..4319cc7 100644 --- a/src/pages/posts/onboarding.md +++ b/src/pages/posts/onboarding.md @@ -78,10 +78,10 @@ For the `BACKEND_SECRET`, you can put any random string here. ## Starting the local database instance For this project, we are using a PostgreSQL database running as a Docker image. You don't really have to know how to use Docker to start the database. -To start the database, navigate to the root directory of the project in a terminal and run the following command: +To start the database, first open Docker Desktop, then navigate to the root directory of the project in a terminal and run the following command: ```bash -docker compose -f docker-compose.dev.yml up -d +docker compose -f compose.dev.yml up -d ``` This command will start the PostgreSQL database in the background. I also included a program called pgAdmin that you can use to interact with the database.