49 lines
449 B
Plaintext
49 lines
449 B
Plaintext
# Dependencies - MUST exclude these
|
|
node_modules
|
|
**/node_modules
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Turbo
|
|
.turbo
|
|
**/.turbo
|
|
|
|
# Next.js build artifacts
|
|
.next
|
|
**/.next
|
|
out
|
|
**/out
|
|
|
|
# Development
|
|
.git
|
|
.gitignore
|
|
*.log
|
|
.env.local
|
|
.env*.local
|
|
.vscode
|
|
.idea
|
|
|
|
# Tests
|
|
**/__tests__
|
|
**/*.test.ts
|
|
**/*.test.tsx
|
|
**/*.spec.ts
|
|
|
|
# Build artifacts
|
|
dist
|
|
**/dist
|
|
build
|
|
**/build
|
|
|
|
# Convex local
|
|
packages/backend/.convex
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker
|
|
docker
|
|
Dockerfile
|
|
.dockerignore
|