82 lines
941 B
Text
82 lines
941 B
Text
# Build outputs (will be generated during Docker build)
|
|
dist/
|
|
.astro/
|
|
|
|
# Dependencies (will be installed fresh in Docker)
|
|
node_modules/
|
|
|
|
# Git files
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
.env.*.local
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
bun-debug.log*
|
|
|
|
# OS files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.project
|
|
.classpath
|
|
.settings/
|
|
|
|
# Testing
|
|
coverage/
|
|
.nyc_output/
|
|
*.test.ts
|
|
*.test.tsx
|
|
*.spec.ts
|
|
*.spec.tsx
|
|
|
|
# Documentation
|
|
README.md
|
|
*.md
|
|
!CHANGELOG.md
|
|
|
|
# CI/CD (not needed in Docker image)
|
|
.github/
|
|
.gitlab-ci.yml
|
|
.travis.yml
|
|
.circleci/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.cache/
|
|
.temp/
|
|
astro_tmp_pages_*
|
|
|
|
# Docker files (don't need to copy into itself)
|
|
Dockerfile
|
|
.dockerignore
|
|
docker-compose.yml
|
|
docker-compose.*.yml
|
|
|
|
# Misc
|
|
.editorconfig
|
|
.prettierignore
|
|
.eslintignore
|
|
|