52 lines
692 B
Plaintext
52 lines
692 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
README.md
|
|
|
|
# Docker files
|
|
Dockerfile*
|
|
docker-compose*
|
|
.dockerignore
|
|
|
|
# Development files
|
|
.env.local
|
|
.env.development
|
|
.env.staging
|
|
node_modules
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# IDE files
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Laravel specific
|
|
storage/app/*
|
|
!storage/app/.gitignore
|
|
storage/framework/cache/*
|
|
!storage/framework/cache/.gitignore
|
|
storage/framework/sessions/*
|
|
!storage/framework/sessions/.gitignore
|
|
storage/framework/views/*
|
|
!storage/framework/views/.gitignore
|
|
storage/logs/*
|
|
!storage/logs/.gitignore
|
|
bootstrap/cache/*
|
|
!bootstrap/cache/.gitignore
|
|
|
|
# Backup files
|
|
*.zip
|
|
*.tar.gz
|
|
*.sql
|
|
|
|
# Test files
|
|
tests/
|
|
phpunit.xml |