This repository has been archived on 2026-01-31. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
nextjs-serve-actions/README.md
2024-05-23 16:55:29 +02:00

32 lines
268 B
Markdown

## Commands
Copy .env.example to .env
```bash
cp .env.example .env
```
Run database on Docker
```bash
docker-compose up
```
Apply Prisma migrations
```bash
yarn migrate
```
Generate Prisma client
```bash
yarn generate
```
Run the server
```bash
yarn dev
```