Initial commit
This commit is contained in:
68
.dockerignore
Normal file
68
.dockerignore
Normal file
@@ -0,0 +1,68 @@
|
||||
# Dependencies
|
||||
node_modules
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Build outputs
|
||||
.next
|
||||
out
|
||||
dist
|
||||
build
|
||||
|
||||
# Testing
|
||||
coverage
|
||||
.nyc_output
|
||||
|
||||
# Environment files (should be provided at runtime)
|
||||
.env
|
||||
.env.local
|
||||
.env.development
|
||||
.env.production
|
||||
.env.test
|
||||
|
||||
# Git
|
||||
.git
|
||||
.gitignore
|
||||
.github
|
||||
|
||||
# IDE
|
||||
.vscode
|
||||
.idea
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Misc
|
||||
*.md
|
||||
!README.md
|
||||
.prettierrc
|
||||
.eslintrc*
|
||||
.editorconfig
|
||||
|
||||
# IMPORTANT: Allow Prisma migrations!
|
||||
!prisma/migrations/**/*.sql
|
||||
|
||||
# Docker
|
||||
Dockerfile
|
||||
docker-compose*.yml
|
||||
.dockerignore
|
||||
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
|
||||
# Duplicates at bottom - cleaned up
|
||||
# node_modules <- already excluded at top
|
||||
# .next <- already excluded at top
|
||||
# .git <- already excluded at top
|
||||
# .gitignore <- already excluded at top
|
||||
# Dockerfile <- already excluded at top
|
||||
# docker-compose.yml <- already excluded at top
|
||||
# .env <- already excluded at top
|
||||
npm-debug.log
|
||||
|
||||
Reference in New Issue
Block a user