From 2047f5a9eafd2380d0a7add72498261a7bc0dc63 Mon Sep 17 00:00:00 2001 From: Sergio Guillen <1203652+donkeysharp@users.noreply.github.com> Date: Wed, 4 Jun 2025 01:04:18 -0400 Subject: [PATCH] Add step to run db:migrate as it is a required step to have a functional local setup (#14) --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 434ee875..805e32f6 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,13 @@ pnpm install ``` 3. Copy `.env.example` to `.env` and configure your environment variables -4. Start the development server +4. Migrate database + +```bash +pnpm db:migrate +``` + +5. Start the development server ```bash pnpm dev