mirror of
https://github.com/sailor-sh/CK-X.git
synced 2026-02-14 17:39:51 +00:00
40 lines
355 B
Plaintext
40 lines
355 B
Plaintext
# Version control
|
|
.git/
|
|
.gitignore
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
tmp/
|
|
temp/
|
|
|
|
# Build artifacts
|
|
*.tar.gz
|
|
*.tgz
|
|
|
|
# Docker files
|
|
Dockerfile
|
|
docker-compose*.yml
|
|
compose*.yaml
|
|
.dockerignore
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# OS specific
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editor directories and files
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Other unnecessary files
|
|
*.gz
|
|
*.zip
|
|
*.tar
|
|
*.rar |