chore: add all the code from original repo

This commit is contained in:
Riccardo
2024-05-23 16:55:29 +02:00
parent d8f9a215eb
commit 85d66215a7
66 changed files with 16668 additions and 122 deletions

31
README.md Normal file
View File

@@ -0,0 +1,31 @@
## 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
```