35 lines
537 B
Plaintext
35 lines
537 B
Plaintext
# Version control / tooling
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
.editorconfig
|
|
.claude
|
|
.vscode
|
|
.idea
|
|
|
|
# Local env (provide env at runtime via .env.docker / compose)
|
|
.env
|
|
.env.backup
|
|
.env.production
|
|
|
|
# Dependencies & build artifacts (rebuilt inside the image)
|
|
vendor
|
|
node_modules
|
|
public/build
|
|
public/hot
|
|
public/storage
|
|
|
|
# Runtime / logs / caches
|
|
storage/logs/*
|
|
storage/framework/cache/data/*
|
|
storage/framework/sessions/*
|
|
storage/framework/views/*
|
|
storage/pail
|
|
*.log
|
|
|
|
# Docs / tests not needed in the image
|
|
README.md
|
|
DOCKER.md
|
|
phpunit.xml
|
|
tests
|