Files
chartdb/.dockerignore
2024-08-30 09:13:10 +03:00

46 lines
543 B
Plaintext

# Ignore node_modules and build directories
node_modules
dist
build
# Ignore logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Ignore local environment files
.env
.env.local
.env.*.local
# Ignore Dockerfile and Docker Compose files
Dockerfile
docker-compose.yml
# Ignore git files
.git
.gitignore
# Ignore IDE and editor settings
.vscode/
.idea/
# Ignore tests and documentation
__tests__/
test/
tests/
spec/
*.md
# Ignore temporary files
*.swp
*.swo
*.DS_Store
*.log
*.lock
*.tmp
# Ignore coverage output
coverage