56 lines
No EOL
638 B
Text
56 lines
No EOL
638 B
Text
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Node
|
|
node_modules
|
|
npm-debug.log
|
|
yarn-error.log
|
|
|
|
# PHP / Laravel
|
|
vendor
|
|
.env
|
|
.env.*
|
|
!.env.production.example
|
|
|
|
# Build artifacts
|
|
frontend/dist
|
|
backend/storage/logs/*
|
|
backend/storage/framework/cache/*
|
|
backend/storage/framework/sessions/*
|
|
backend/storage/framework/testing/*
|
|
backend/storage/framework/views/*
|
|
|
|
# Testing
|
|
tests
|
|
.phpunit.result.cache
|
|
coverage
|
|
|
|
# Documentation
|
|
*.md
|
|
!README.md
|
|
docs
|
|
|
|
# CI/CD
|
|
.github
|
|
.gitlab-ci.yml
|
|
|
|
# Docker
|
|
docker-compose*.yml
|
|
!docker-compose.prod.yml
|
|
Dockerfile*
|
|
!docker/production/Dockerfile
|
|
|
|
# Misc
|
|
.DS_Store
|
|
Thumbs.db
|
|
.claude
|
|
.trees |