35 lines
330 B
Plaintext
35 lines
330 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Node
|
|
node_modules
|
|
|
|
# Laravel
|
|
vendor
|
|
storage/logs/*
|
|
storage/framework/cache/*
|
|
storage/framework/sessions/*
|
|
storage/framework/views/*
|
|
bootstrap/cache/*
|
|
|
|
# Test & Dev
|
|
tests
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Docker selbst
|
|
docker-compose*.yml
|
|
Dockerfile
|
|
docker/
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|