mirror of
https://github.com/dockpeek/dockpeek.git
synced 2026-01-01 15:09:34 -06:00
73 lines
622 B
Plaintext
73 lines
622 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Environment / Secrets
|
|
.env
|
|
.env.*
|
|
*.key
|
|
*.pem
|
|
|
|
# Docker
|
|
Dockerfile*
|
|
.dockerignore
|
|
docker-compose*.yml
|
|
|
|
# IDE / Editor
|
|
.vscode
|
|
.idea
|
|
|
|
# OS files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Archives / Binaries
|
|
*.com
|
|
*.class
|
|
*.dll
|
|
*.exe
|
|
*.o
|
|
*.so
|
|
*.dmg
|
|
*.gz
|
|
*.iso
|
|
*.jar
|
|
*.rar
|
|
*.tar
|
|
*.zip
|
|
|
|
# Logs / Dumps
|
|
*.log
|
|
*.sql
|
|
*.sqlite
|
|
|
|
# Dependencies / Build / Cache
|
|
node_modules/
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
.pytest_cache/
|
|
.coverage/
|
|
dist/
|
|
build/
|
|
.cache/
|
|
.next/
|
|
out/
|
|
|
|
# Project specific
|
|
.build/
|
|
.develop/
|
|
.ideas/
|
|
.Releases/
|
|
screenshots/
|
|
|
|
# Documentation
|
|
README.md
|
|
LICENSE
|
|
docs/
|
|
*.md |