diff --git a/.gitignore b/.gitignore index 11078bc..8b89b5c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,38 @@ index.html # Ignore frontend dev file +# Ignore node modules (if using Node.js) +client/node_modules/ +login-auth_backend/node_modules/ +panel-mgmt_backend/node_modules/ +user-mgmt_backend/node_modules/ + +# Ignore build output directories +dist/ +build/ + +# Ignore log files +*.log + +# Ignore OS-specific files +.DS_Store +Thumbs.db + +# Ignore notes and documentation todo.txt -# Ignore todo list file \ No newline at end of file +docs/ +notes/ + +# Ignore IDE/editor settings +.vscode/ +.idea/ + +# Ignore frontend dev files (uncompiled sources, temp files) +*.tmp +*.bak + +# Ignore compiled files (if any) +*.out +*.exe + +# Add more patterns as needed for your stack \ No newline at end of file