feat: ...
This commit is contained in:
74
.gitignore
vendored
74
.gitignore
vendored
@@ -1,31 +1,51 @@
|
||||
# ยกเว้นโฟลเดอร์
|
||||
|
||||
.devcontainer/
|
||||
@Recently-Snapshot/
|
||||
Documents/
|
||||
# VS Code
|
||||
# =====================================================
|
||||
# IDE/Editor settings
|
||||
# =====================================================
|
||||
.vscode/
|
||||
# Dependencies
|
||||
/node_modules
|
||||
.idea/
|
||||
# =====================================================
|
||||
# Node.js dependencies (เฉพาะ backend และ frontend)
|
||||
# =====================================================
|
||||
/backend/node_modules/
|
||||
/frontend/node_modules/
|
||||
**/node_modules/
|
||||
# lockfiles
|
||||
/backend/package-lock.json
|
||||
/frontend/package-lock.json
|
||||
**/package-lock.json
|
||||
# =====================================================
|
||||
# Next.js build output
|
||||
# =====================================================
|
||||
/frontend/.next/
|
||||
/frontend/out/
|
||||
/frontend/.vercel/
|
||||
|
||||
# Build outputs
|
||||
/dist
|
||||
/build
|
||||
/.next/
|
||||
/out/
|
||||
/bin/
|
||||
# Environment variables (VERY IMPORTANT)
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
# Environment variables (VERY IMPORTANT)
|
||||
|
||||
# =====================================================
|
||||
# Environment files
|
||||
# =====================================================
|
||||
.env
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
# Log files
|
||||
|
||||
# =====================================================
|
||||
# Logs
|
||||
# =====================================================
|
||||
/backend/logs/
|
||||
/frontend/logs/
|
||||
/logs/
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
@@ -33,7 +53,6 @@ yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
*.tmp
|
||||
*.temp
|
||||
Thumbs.db
|
||||
ehthumbs.db
|
||||
desktop.ini
|
||||
# ===================================================================
|
||||
@@ -43,13 +62,26 @@ desktop.ini
|
||||
*.dump
|
||||
*.bak
|
||||
|
||||
# ===================================================================
|
||||
# Operating System & IDE specific files
|
||||
# ===================================================================
|
||||
# macOS
|
||||
# =====================================================
|
||||
# OS-specific junk
|
||||
# =====================================================
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
.AppleDouble
|
||||
|
||||
# Windows
|
||||
Thumbs.db
|
||||
desktop.ini
|
||||
# =====================================================
|
||||
# Docker-related
|
||||
# =====================================================
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
docker-compose.override.yml
|
||||
docker-compose.override.*.yml
|
||||
|
||||
# =====================================================
|
||||
# Cache / temp
|
||||
# =====================================================
|
||||
/backend/.cache/
|
||||
/frontend/.cache/
|
||||
.tmp/
|
||||
.cache/
|
||||
Reference in New Issue
Block a user