Add step to run db:migrate as it is a required step to have a functional local setup (#14)

This commit is contained in:
Sergio Guillen
2025-06-04 01:04:18 -04:00
committed by GitHub
parent fcb97908e0
commit 2047f5a9ea

View File

@@ -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