Files
quasar/.gitignore
Benito Rodríguez f4bee94a16 chore: update Prisma and dependencies, add initial migration and tests
- Updated Prisma and @prisma/client to version 6.19.2 in package.json and yarn.lock.
- Added package extensions for @prisma/client in .yarnrc.yml.
- Updated backend README.md for clearer setup instructions.
- Created initial migration for Game, Platform, and related tables in Prisma.
- Added migration lock file for version control.
- Implemented tests for Game model using Vitest, including creation and unique slug constraint checks.
2026-02-08 12:36:36 +01:00

73 lines
974 B
Plaintext

# Node
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
coverage/
# Yarn (Berry / v2+)
# Ignore Yarn caches and build artifacts but keep releases/plugins/sdks committed
.yarn/cache/
.yarn/unplugged/
.yarn/build-state.yml
.yarn/install-state.gz
.yarn/patches/
# Keep releases, plugins and sdks (commit these)
!.yarn/releases/
!.yarn/releases/*
!.yarn/plugins/
!.yarn/plugins/*
!.yarn/sdks/
!.yarn/sdks/*
# Keep the PnP files committed
!.pnp.cjs
!.pnp.loader.mjs
# Production build
/dist/
/build/
/output/
# Quasar
.quasar/
.quasar/*
# Env files
.env
.env.*
# Logs
logs/
*.log
# OS files
.DS_Store
Thumbs.db
# IDEs
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
# Misc
.cache/
.parcel-cache/
*.local
.node_repl_history
# Playwright artifacts
playwright-report/
test-results/
.playwright/
# TypeScript
*.tsbuildinfo
# Optional: lockfiles (uncomment to ignore)
# package-lock.json
# yarn.lock
# pnpm-lock.yaml
backend/prisma/dev.db