50 lines
736 B
Plaintext
50 lines
736 B
Plaintext
apache-cassandra
|
|
|
|
data
|
|
|
|
# Ignore the .env files containing environment variables
|
|
.env
|
|
.env.cassandra1
|
|
.env.cassandra2
|
|
.env.cassandra3
|
|
|
|
# Ignore the data directory where dumps and volumes are stored
|
|
data/dumps/
|
|
data/volumes/
|
|
logs/
|
|
|
|
# Ignore any log files and directories
|
|
*.log
|
|
|
|
# Ignore the build directory and Docker image caches
|
|
build/
|
|
*.pid
|
|
|
|
# Ignore node_modules and other dependencies
|
|
node_modules/
|
|
bower_components/
|
|
|
|
# Ignore OS-specific and IDE-specific files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Ignore temporary files
|
|
*.swp
|
|
*.bak
|
|
*.tmp
|
|
*.orig
|
|
*.old
|
|
|
|
# Ignore Python compiled files
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Ignore the docker-compose override files
|
|
docker-compose.override.yml
|
|
|
|
# Ignore log files and databases
|
|
*.log
|
|
*.sql
|
|
*.sqlite
|