63 lines
628 B
Plaintext
63 lines
628 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Testing
|
|
coverage/
|
|
*.log
|
|
|
|
# Production
|
|
build/
|
|
dist/
|
|
.next/
|
|
out/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite
|
|
|
|
# Prisma
|
|
backend/prisma/migrations/
|
|
|
|
# Docker
|
|
docker-compose.override.yml
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# Build artifacts
|
|
*.tsbuildinfo
|
|
|
|
# Smart contract artifacts
|
|
backend/contracts/artifacts/
|
|
backend/contracts/cache/
|
|
backend/contracts/typechain-types/
|