From 15649f4310bd86e990e123ecc8eebcc2a7c5646a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=B8=D0=BA=D1=82=D0=BE=D1=80?= <78488229+viktor138irk@users.noreply.github.com> Date: Wed, 6 May 2026 17:51:59 +0900 Subject: [PATCH] Add project gitignore --- .gitignore | 93 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 93 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..af771ab --- /dev/null +++ b/.gitignore @@ -0,0 +1,93 @@ +# Runtime logs +*.log +logs/ +log/ + +# Backups +*.bak +*.backup +*.tar +*.tar.gz +*.zip +backups/ +backup/ + +# Secrets and credentials +.env +.env.* +!.env.example +*.key +*.pem +*.crt +*.csr +*.p12 +*.pfx +id_rsa +id_rsa.pub +id_ed25519 +id_ed25519.pub + +# Local config +config/local.* +*.local + +# Virtual machine files +*.qcow2 +*.raw +*.img +*.iso +*.vmdk +*.vdi +*.vhd +*.vhdx +*.ova +*.ovf + +# Cloud-init/generated files +seed.iso +user-data +meta-data +network-config + +# Temporary/cache +tmp/ +temp/ +cache/ +.cache/ + +# Editor/IDE +.vscode/ +.idea/ +*.swp +*.swo + +# OS junk +.DS_Store +Thumbs.db + +# Python future backend +__pycache__/ +*.py[cod] +.venv/ +venv/ + +# Node future frontend +node_modules/ +dist/ +build/ +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Composer future PHP backend +vendor/ +composer.lock + +# Database dumps +*.sql +*.sqlite +*.db + +# System files +*.pid +*.sock