63 lines
552 B
Plaintext
63 lines
552 B
Plaintext
# Node modules
|
|
node_modules/
|
|
npm-debug.log
|
|
yarn-error.log
|
|
|
|
# Build output
|
|
.next/
|
|
out/
|
|
dist/
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Testing
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Misc
|
|
*.log
|
|
.cache/
|
|
temp/
|
|
tmp/
|
|
|
|
# Database (don't include existing DB in image)
|
|
data/
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
|
|
# TypeScript
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
|
|
# Documentation
|
|
README.md
|
|
DEPLOYMENT.md
|
|
LICENSE
|
|
|
|
# Docker files
|
|
Dockerfile
|
|
docker-compose.yml
|
|
.dockerignore
|
|
|
|
# Setup scripts
|
|
setup.sh
|