mirror of
				https://gitea.com/gitea/gitea-mcp.git
				synced 2025-11-04 12:21:50 +00:00 
			
		
		
		
	- Add a `.dockerignore` file for Docker configuration - Ignore git-related files and directories - Exclude Dockerfile and `.dockerignore` - Ignore build artifacts including binaries and shared libraries - Add rules for Go-specific files and directories - Exclude testing-related files and folders - Ignore files from IDEs and editors - Exclude OS-specific and temporary files - Ignore documentation files and directories - Add development tools configuration files - Exclude debug files and directories Signed-off-by: appleboy <appleboy.tw@gmail.com>
		
			
				
	
	
		
			62 lines
		
	
	
		
			503 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			503 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# Git
 | 
						|
.git
 | 
						|
.gitignore
 | 
						|
.github/
 | 
						|
.gitea/
 | 
						|
 | 
						|
# Docker
 | 
						|
Dockerfile
 | 
						|
.dockerignore
 | 
						|
 | 
						|
# Build artifacts
 | 
						|
bin/
 | 
						|
dist/
 | 
						|
build/
 | 
						|
*.exe
 | 
						|
*.exe~
 | 
						|
*.dll
 | 
						|
*.so
 | 
						|
*.dylib
 | 
						|
 | 
						|
# Go specific
 | 
						|
vendor/
 | 
						|
go.work
 | 
						|
 | 
						|
# Testing
 | 
						|
*_test.go
 | 
						|
**/test/
 | 
						|
**/tests/
 | 
						|
coverage.out
 | 
						|
coverage.html
 | 
						|
 | 
						|
# IDE and editor files
 | 
						|
.idea/
 | 
						|
.vscode/
 | 
						|
*.swp
 | 
						|
*.swo
 | 
						|
*~
 | 
						|
 | 
						|
# OS specific
 | 
						|
.DS_Store
 | 
						|
Thumbs.db
 | 
						|
 | 
						|
# Temporary files
 | 
						|
tmp/
 | 
						|
temp/
 | 
						|
*.tmp
 | 
						|
*.log
 | 
						|
 | 
						|
# Documentation
 | 
						|
docs/
 | 
						|
*.md
 | 
						|
LICENSE
 | 
						|
 | 
						|
# Development tools
 | 
						|
.air.toml
 | 
						|
.golangci.yml
 | 
						|
.goreleaser.yml
 | 
						|
 | 
						|
# Debug files
 | 
						|
debug
 | 
						|
__debug_bin
 |