- Update .gitignore to properly exclude CloudronPackages-Workspaces/ directory while allowing CloudronPackages-Artifacts/ - Add CloudronStack/output/CloudronPackages-Artifacts/tirreno/tirreno-1761838026.tar.gz to tracking - This ensures artifacts are tracked while temporary workspaces are ignored This improves repository hygiene by tracking important artifacts while ignoring temporary workspaces.
		
			
				
	
	
		
			94 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			1.4 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/
 | |
| SupportStack/output/config/wakaapi/database/*.db
 | |
| SupportStack/output/config/wakaapi/database/*.db-journal
 | |
| SupportStack/output/docker-compose/config/
 | |
| SupportStack/output/docker-compose/config/homepage/logs/
 | |
| ToolboxStack/output/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
 | |
| CloudronStack/collab/*.lock
 | |
| CloudronStack/collab/*test-*
 | |
| CloudronStack/output/CloudronPackages-Workspaces/
 |