50 lines
630 B
Text
50 lines
630 B
Text
|
|
# Version control
|
||
|
|
.git
|
||
|
|
.gitignore
|
||
|
|
.gitattributes
|
||
|
|
|
||
|
|
# Dev environment
|
||
|
|
shell.nix
|
||
|
|
Dockerfile.dev
|
||
|
|
docker/
|
||
|
|
|
||
|
|
# Tests (not needed in prod image)
|
||
|
|
tests/
|
||
|
|
phpunit.xml
|
||
|
|
.phpunit.result.cache
|
||
|
|
phpstan.neon
|
||
|
|
|
||
|
|
# Dependencies (rebuilt during image build)
|
||
|
|
node_modules/
|
||
|
|
vendor/
|
||
|
|
|
||
|
|
# Build artifacts (frontend stage produces these)
|
||
|
|
public/build/
|
||
|
|
public/hot
|
||
|
|
|
||
|
|
# Editor / OS
|
||
|
|
.editorconfig
|
||
|
|
.idea/
|
||
|
|
.vscode/
|
||
|
|
.DS_Store
|
||
|
|
*.swp
|
||
|
|
*.swo
|
||
|
|
|
||
|
|
# Env / secrets
|
||
|
|
.env
|
||
|
|
.env.*
|
||
|
|
!.env.example
|
||
|
|
|
||
|
|
# Logs and runtime caches
|
||
|
|
storage/logs/*.log
|
||
|
|
storage/framework/cache/data/
|
||
|
|
storage/framework/sessions/
|
||
|
|
storage/framework/views/
|
||
|
|
|
||
|
|
# CI
|
||
|
|
.forgejo/
|
||
|
|
|
||
|
|
# Docs / project meta
|
||
|
|
README.md
|
||
|
|
LICENSE
|