5e6d61d400
This commit modifies the .gitignore file to add rules for ignoring hidden files and directories, specifically those starting with a dot (e.g., .claude/* and .rules). This change helps maintain a cleaner repository by preventing unnecessary files from being tracked. Additionally, the existing rule for ignoring the DataBackup directory remains intact, ensuring that backup files are excluded from version control.
39 lines
448 B
Plaintext
39 lines
448 B
Plaintext
#Ignore thumbnails created by Windows
|
|
Thumbs.db
|
|
#Ignore files built by Visual Studio
|
|
*.user
|
|
*.aps
|
|
*.pch
|
|
*.vspscc
|
|
*_i.c
|
|
*_p.c
|
|
*.ncb
|
|
*.suo
|
|
*.bak
|
|
*.cache
|
|
*.ilk
|
|
*.log
|
|
[Bb]in
|
|
[Dd]ebug*/
|
|
*.sbr
|
|
obj/
|
|
[Rr]elease*/
|
|
_ReSharper*/
|
|
/.vs/*
|
|
|
|
DataBackup/
|
|
*.db
|
|
/.*/*
|
|
.*rules
|
|
|
|
# Production secrets and configuration
|
|
auth-secrets.json
|
|
docker-compose.yml
|
|
docker-compose.override.yml
|
|
/WebApp/logs/*
|
|
/WebApp/DataProtectionKeys/*
|
|
|
|
# Runtime data directory
|
|
/WebApp/Data/*
|
|
|