149 lines
1.6 KiB
Plaintext
149 lines
1.6 KiB
Plaintext
# .dockerignore
|
|
# Generated by configs.sh
|
|
|
|
# Secrets & sensitive files (ALWAYS EXCLUDED FOR SECURITY)
|
|
.env
|
|
.env.*
|
|
*.key
|
|
*.pem
|
|
*_rsa
|
|
*_rsa.*
|
|
*.p12
|
|
*.pfx
|
|
.aws/
|
|
.ssh/
|
|
credentials
|
|
secrets.yml
|
|
secrets.yaml
|
|
|
|
# Laravel/PHP
|
|
.phpunit.cache
|
|
bootstrap/cache/*
|
|
!bootstrap/cache/.gitignore
|
|
public/build
|
|
storage/framework/cache/data/*
|
|
storage/framework/sessions/*
|
|
storage/framework/views/*
|
|
storage/logs/*
|
|
storage/*.key
|
|
.phpstorm.meta.php
|
|
.phpunit.result.cache
|
|
.editorconfig
|
|
.htaccess
|
|
_ide_helper.php
|
|
boost.json
|
|
phpstan.neon
|
|
phpunit.xml
|
|
pint.json
|
|
railpack.json
|
|
rector.php
|
|
version.json
|
|
|
|
# Node.js
|
|
node_modules/
|
|
.npm/
|
|
.yarn/
|
|
.bun/
|
|
.pnp.*
|
|
dist/
|
|
build/
|
|
.next/
|
|
.nuxt/
|
|
.cache/
|
|
.turbo/
|
|
out/
|
|
.oxfmtrc.json
|
|
.oxlintrc.json
|
|
tsconfig.json
|
|
vitest.config.ts
|
|
|
|
### Docker
|
|
.docker
|
|
Dockerfile
|
|
compose.yaml
|
|
compose.*
|
|
|
|
# Version control
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
.gitmodules
|
|
.svn/
|
|
.hg/
|
|
|
|
# IDE & Editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.project
|
|
.classpath
|
|
.settings/
|
|
|
|
# Documentation
|
|
*.md
|
|
README*
|
|
LICENSE*
|
|
CHANGELOG*
|
|
docs/
|
|
documentation/
|
|
.readthedocs.yml
|
|
mkdocs.yml
|
|
|
|
# Misc
|
|
.agents
|
|
.lean-ctx
|
|
.opencode
|
|
.rtk
|
|
.serena
|
|
.superpowers
|
|
docs/superpowers
|
|
openspec
|
|
CHANGELOG.md
|
|
|
|
# Tests & Coverage
|
|
test/
|
|
tests/
|
|
__tests__/
|
|
*.test.js
|
|
*.test.ts
|
|
*.spec.js
|
|
*.spec.ts
|
|
*.test.py
|
|
*_test.go
|
|
coverage/
|
|
.coverage
|
|
htmlcov/
|
|
.pytest_cache/
|
|
.tox/
|
|
jest.config.js
|
|
vitest.config.js
|
|
|
|
# CI/CD
|
|
.github/
|
|
.gitlab-ci.yml
|
|
.circleci/
|
|
.travis.yml
|
|
azure-pipelines.yml
|
|
Jenkinsfile
|
|
.drone.yml
|
|
|
|
# Log files
|
|
*.log
|
|
logs/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# OS-specific files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
desktop.ini
|