Compare commits

..

4 commits

Author SHA1 Message Date
095db2a28a chore(deps): update docker/build-push-action digest to 2634353
All checks were successful
docker-build / docker (push) Successful in 3m36s
container-scan / Container Scan (pull_request) Successful in 1m54s
docker-build / docker (pull_request) Successful in 1m4s
2025-05-28 12:00:23 +00:00
3cf3663469 Merge pull request 'docs: update README with Prisma setup instructions' (#75)
All checks were successful
container-scan / Container Scan (push) Successful in 5m8s
docker-build / docker (push) Successful in 4m48s
Reviewed-on: #75
Reviewed-by: Dominik <mail@dominikstahl.dev>
2025-05-28 11:12:27 +00:00
b2513609df docs: fix formatting in Prisma setup instructions
All checks were successful
docker-build / docker (pull_request) Successful in 9m50s
container-scan / Container Scan (pull_request) Successful in 3m25s
2025-05-21 14:29:52 +02:00
48d5b45e21 docs: update README with Prisma setup instructions
Some checks failed
container-scan / Container Scan (pull_request) Successful in 4m22s
docker-build / docker (pull_request) Failing after 4m43s
2025-05-21 14:16:11 +02:00

View file

@ -99,12 +99,20 @@ This project is built with a modern tech stack:
4. **Apply database migrations (Prisma):** 4. **Apply database migrations (Prisma):**
- Ensure your Prisma schema (`prisma/schema.prisma`) is defined. - Ensure your Prisma schema (`prisma/schema.prisma`) is defined.
- Setup/update the database with these commands:
```bash
yarn prisma:generate
```
```bash
yarn prisa:db:push
```
- Run the following command to apply migrations and generate Prisma Client: - Run the following command to apply migrations and generate Prisma Client:
```bash ```bash
npx prisma migrate dev npx prisma migrate dev
# You might be prompted to name your first migration. # You might be prompted to name your first migration.
``` ```
- (Optional: If you need to generate Prisma Client without running migrations, use `npx prisma generate`)
Tipp: You can open the prisma database UI with `yarn prisma:studio`
5. **Run the development server:** 5. **Run the development server:**