From 886cecf52351346b0325c8bb19a1ec7f3e420d0b Mon Sep 17 00:00:00 2001 From: ms Date: Sun, 8 Feb 2026 21:24:03 +0100 Subject: [PATCH] gtignore --- .gitignore | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/.gitignore b/.gitignore index d2e63bd..a14613a 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,47 @@ my_gitea.crt # Log files *.log +# --- Systemowe (Linux/macOS/Windows) --- +.DS_Store +Thumbs.db +*~ +*.swp +*.tmp + +# --- Visual Studio Code --- +.vscode/ +# Jeśli chcesz współdzielić ustawienia debugowania, zakomentuj powyższe, +# a odkomentuj poniższe: +# !.vscode/launch.json +# !.vscode/tasks.json + +# --- Logi i bazy danych --- +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +*.sqlite + +# --- Sekrety (BARDZO WAŻNE) --- +# Nigdy nie wysyłaj haseł, kluczy API i tokenów! +.env +.env.local +.env.development.local +.env.test.local +.env.production.local +*.pem +*.key + +# --- Pakiety i biblioteki (zależnie od języka) --- +# Node.js +node_modules/ +# Python +__pycache__/ +*.py[cod] +*$py.class +venv/ +.venv/ +# C/C++ +*.o +*.out +build/ \ No newline at end of file