trip-planner/.dockerignore

64 lines
750 B
Text
Raw Permalink Normal View History

2025-11-16 15:53:52 +01:00
# Git
.git/
.github/
.gitignore
.gitattributes
# CI/CD
.woodpecker.yml
# Environment
.env
.env.*
!.env.example
# Development
.editorconfig
.eslintrc*
.prettierrc*
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# Documentation
*.md
LICENSE
# Docker
docker-compose*.yml
# Claude files
.claude/
# Node modules (will be installed in build)
node_modules/
frontend/node_modules/
# Backend vendor (will be installed in build)
vendor/
backend/vendor/
# Build artifacts
frontend/dist/
frontend/build/
# Cache and logs
backend/storage/logs/*
backend/storage/framework/cache/*
backend/storage/framework/sessions/*
backend/storage/framework/views/*
backend/bootstrap/cache/*
*.log
# Tests
tests/
backend/tests/
frontend/tests/
# Data directories
docker/data/