improvement(readme): update readme.md (#1412)

This commit is contained in:
Waleed
2025-09-22 11:12:25 -07:00
committed by GitHub
parent e640102797
commit 6fada45cd8
2 changed files with 14 additions and 1 deletions

View File

@@ -125,10 +125,21 @@ Update your `.env` file with the database URL:
DATABASE_URL="postgresql://postgres:your_password@localhost:5432/simstudio"
```
4. Set up the database (from packages/db):
4. Set up the database:
First, configure the database package environment:
```bash
cd packages/db
cp .env.example .env
```
Update your `packages/db/.env` file with the database URL:
```bash
DATABASE_URL="postgresql://postgres:your_password@localhost:5432/simstudio"
```
Then run the migrations:
```bash
bunx drizzle-kit migrate --config=./drizzle.config.ts
```