43 lines
293 B
Plaintext
43 lines
293 B
Plaintext
# Git
|
|
.git
|
|
.github
|
|
.gitignore
|
|
|
|
# Dependencies
|
|
node_modules
|
|
|
|
# Next.js
|
|
.next
|
|
out
|
|
|
|
# Environment
|
|
.env*
|
|
!.env.example
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
logs/
|
|
|
|
# Documentation
|
|
*.md
|
|
!README.md
|
|
specs/
|
|
|
|
# IDE
|
|
.vscode
|
|
.idea
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Testing
|
|
.coverage
|
|
.nyc_output
|
|
|
|
# Misc
|
|
*.swp
|
|
*.swo
|
|
*~
|