49 lines
641 B
Plaintext
49 lines
641 B
Plaintext
# VCS / meta
|
|
.git
|
|
.github
|
|
.gitignore
|
|
LICENSE
|
|
README.md
|
|
*.md
|
|
|
|
# Node / Next artifacts (ไม่ต้องใส่ลง build context)
|
|
node_modules
|
|
.npm
|
|
.pnpm-store
|
|
.cache
|
|
.next
|
|
.next/cache
|
|
out
|
|
dist
|
|
coverage
|
|
.vercel
|
|
.turbo
|
|
.eslintcache
|
|
.sass-cache
|
|
|
|
# IDE / OS
|
|
.vscode
|
|
.idea
|
|
.DS_Store
|
|
*.swp
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# Env (กันความลับรั่วเข้า image; ให้ผ่านเป็น ARG/ENV ตอน build/run แทน)
|
|
.env
|
|
.env.*
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Misc
|
|
Dockerfile
|
|
docker-compose*.yml
|