chore: update environment configuration and enhance Prisma integration
Some checks failed
Lint and Check Types / validations (push) Failing after 47s

- Added MINIO_PORT to .env.example for Minio configuration.
- Updated package.json to include a script for Prisma generation.
- Modified turbo.json to ensure db:generate task is executed during build and dev processes.
- Updated CI workflow to run Prisma generate step.
- Adjusted imports in the API to reference the generated Prisma client correctly.
- Added .gitignore entry for Prisma client directory.
This commit is contained in:
Juan Sebastián Montoya 2025-05-06 18:36:47 -05:00
parent bb4deff66b
commit c7911953df
10 changed files with 20 additions and 8 deletions

View file

@ -1,7 +1,7 @@
name: CI
name: Lint and Check Types
on: [push]
jobs:
test:
validations:
runs-on: docker
steps:
- name: Checkout
@ -12,6 +12,8 @@ jobs:
node-version: 22
- name: Install
run: npm install
- name: Prisma Generate
run: npm run prisma:generate
- name: Lint
run: npm run lint
- name: Check Types