littleshop/TeleBot/.gitignore
SysAdmin 4992b6b839 Cleanup: Update .gitignore and verify TOR implementation
- Add publish directories to .gitignore (both root and TeleBot)
- Exclude compressed assets (*.br, *.gz) except wwwroot
- Exclude archive files (*.tar.gz, *.zip)
- Run TOR verification: 9/9 checks PASSED ✓
- Document nginx push notification configuration

This cleanup prevents build artifacts from cluttering git status while
maintaining proper TOR security configuration verification.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-01 16:20:16 +01:00

112 lines
1.1 KiB
Plaintext

# .NET
bin/
obj/
*.dll
*.exe
*.pdb
*.user
*.userosscache
*.sln.docstates
.vs/
project.lock.json
project.fragment.lock.json
artifacts/
# Configuration files with secrets
appsettings.Production.json
appsettings.Development.json
appsettings.*.json
!appsettings.json
# Database files
*.db
*.db-shm
*.db-wal
telebot.db
hangfire.db
# Logs
logs/
*.log
# Redis
dump.rdb
appendonly.aof
# Tor
tor_data/
*.onion
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Test results
TestResults/
*.trx
*.coverage
# Build results
[Dd]ebug/
[Rr]elease/
x64/
x86/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/
[Ll]ogs/
publish/
**/publish/
# Compressed assets
*.br
*.gz
!wwwroot/**/*.gz
!wwwroot/**/*.br
# Archive files
*.tar.gz
*.zip
# NuGet
*.nupkg
*.snupkg
.nuget/
packages/
# User-specific files
*.rsuser
*.suo
*.user
*.userosscache
*.sln.docstates
# Publish profiles
*.pubxml
*.pubxml.user
# Docker
.dockerignore
docker-compose.override.yml
# Environment variables
.env
.env.local
.env.production
# Backup files
*.bak
*.backup
*~
# Temporary files
*.tmp
temp/
tmp/