63 lines
939 B
Plaintext
63 lines
939 B
Plaintext
# =============================================================================
|
|
# Admin Service - Docker Ignore File
|
|
# =============================================================================
|
|
|
|
# Dependencies (will be installed fresh in container)
|
|
node_modules/
|
|
|
|
# Build output (will be built in container)
|
|
dist/
|
|
|
|
# Environment files (will be provided at runtime)
|
|
.env
|
|
.env.local
|
|
.env.development
|
|
.env.development.local
|
|
.env.test
|
|
.env.test.local
|
|
.env.production
|
|
.env.production.local
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Test
|
|
coverage/
|
|
.nyc_output
|
|
test/
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
|
|
# Docker
|
|
Dockerfile
|
|
Dockerfile.test
|
|
docker-compose.yml
|
|
docker-compose.test.yml
|
|
.dockerignore
|
|
|
|
# Documentation
|
|
*.md
|
|
docs/
|
|
|
|
# Scripts (not needed in container)
|
|
scripts/
|
|
|
|
# Claude
|
|
.claude/
|
|
|
|
# Database scripts (mounted separately if needed)
|
|
database/
|