Files
TSYSDevStack/.gitignore
ReachableCEO d80d793079 feat: update prompt to specify SQLite preference for database-backed services
- Add requirement to use SQLite for every service that will support it
- Avoid heavier databases like PostgreSQL, MySQL when SQLite is adequate
- Only use heavier databases when SQLite is not supported or inadequate
- Implement proper SQLite volume management and security practices
- Configure SQLite as default database engine in environment variables
- Ensure data integrity and performance when migrating to SQLite
- Implement proper backup strategies for SQLite databases
2025-10-28 20:41:00 -05:00

86 lines
1.1 KiB
Plaintext

# TSYSDevStack SupportStack Demo .gitignore
# Docker-related
*.dockerignore
.dockerconfig
.dockerenv
# Environment and configuration
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# Logs
*.log
logs/
*.out
*.pid
# OS generated
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
desktop.ini
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# Node-related (if any)
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Build outputs
build/
dist/
target/
*.tmp
*.temp
# Test outputs
coverage/
.nyc_output/
*.gcda
*.gcno
# Docker artifacts
artifacts/SupportStack/config/wakaapi/database/*.db
artifacts/SupportStack/config/wakaapi/database/*.db-journal
artifacts/SupportStack/config/homepage/logs/
artifacts/SupportStack/docker-compose/config/
artifacts/ToolboxStack/toolbox-base/.build-cache/
# Local Docker volumes
.docker-volumes/
# Database files
*.db
*.db-journal
*.sqlite
*.sqlite-shm
*.sqlite-wal
# Temporary files
tmp/
temp/
.Dockerfile*
# Backup files
*~
*.bak
*.backup
# System files
.SynologyWorkingDirectory