From 534dffc793ecbe11be0115aac30bfb47b0b7d39d Mon Sep 17 00:00:00 2001 From: Alfredo Oliviero Date: Wed, 24 Jul 2024 15:01:59 +0200 Subject: [PATCH] first commit --- .gitignore | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..640c410 --- /dev/null +++ b/.gitignore @@ -0,0 +1,45 @@ +# 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