70 lines
738 B
Text
70 lines
738 B
Text
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Environment
|
|
.env.local
|
|
.env.*.local
|
|
stack.env
|
|
.env.example
|
|
|
|
# Dependencies (will be installed in container)
|
|
/vendor/
|
|
/node_modules/
|
|
|
|
# Build artifacts
|
|
/var/
|
|
/build/
|
|
/dist/
|
|
|
|
# Cache
|
|
/.phpunit.cache/
|
|
/public/bundles/
|
|
/public/assets/
|
|
/assets/vendor/
|
|
|
|
# Tests
|
|
/phpunit.xml
|
|
/tests/
|
|
|
|
# Uploads (might be managed separately)
|
|
/public/uploads/
|
|
/src/uploads/
|
|
|
|
# Config secrets
|
|
/config/secrets/prod/prod.decrypt.private.php
|
|
secrets/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.log
|
|
|
|
# Docker files
|
|
Dockerfile
|
|
docker-compose*.yml
|
|
docker-compose*.yaml
|
|
.dockerignore
|
|
|
|
# CI/CD
|
|
.forgejo/
|
|
.gitlab-ci.yml
|
|
.travis.yml
|
|
|
|
# Documentation
|
|
*.md
|
|
/document/
|
|
|
|
# Misc
|
|
.editorconfig
|
|
.codeclimate.yml
|
|
|
|
|