47 lines
472 B
Text
47 lines
472 B
Text
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Environment files (will be mounted or set via docker-compose)
|
|
.local.env
|
|
*.env
|
|
|
|
# Documentation
|
|
*.md
|
|
DOCKER_README.md
|
|
RECOMMENDED_MODELS.md
|
|
|
|
# Development files
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Build artifacts
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
scraper-google
|
|
|
|
# Test files
|
|
*_test.go
|
|
testdata/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Docker files (not needed in image)
|
|
Dockerfile
|
|
docker-compose.yml
|
|
.dockerignore
|