63 lines
750 B
Text
63 lines
750 B
Text
# 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/
|