Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions examples/next-drizzle-mysql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This example demonstrates how to build a modern web application using:

1. Clone the repository and install dependencies:
```bash
npm install
pnpm install
```

2. Set up your environment variables:
Expand All @@ -37,18 +37,18 @@ This example demonstrates how to build a modern web application using:

3. Start the MySQL database using Docker:
```bash
docker-compose up -d
docker compose up -d
```

4. Run database migrations:
```bash
npm run db:generate
npm run db:migrate
pnpm run db:generate
pnpm run db:migrate
```

5. Start the development server:
```bash
npm run dev
pnpm run dev
```

The application will be available at `http://localhost:3000`.
Expand Down