- Added standard .gitignore for the project - Added docs/README.md with project documentation structure Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
58 lines
1.6 KiB
Plaintext
58 lines
1.6 KiB
Plaintext
# =============================================================================
|
|
# CLINICA-DENTAL .gitignore
|
|
# =============================================================================
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# DEPENDENCIAS
|
|
# -----------------------------------------------------------------------------
|
|
node_modules/
|
|
.pnp/
|
|
.pnp.js
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# BUILD OUTPUTS
|
|
# -----------------------------------------------------------------------------
|
|
dist/
|
|
build/
|
|
.next/
|
|
out/
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# ENVIRONMENT Y SECRETOS
|
|
# -----------------------------------------------------------------------------
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
!.env.example
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# LOGS
|
|
# -----------------------------------------------------------------------------
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# IDE Y EDITORES
|
|
# -----------------------------------------------------------------------------
|
|
.idea/
|
|
.vscode/
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# SISTEMA OPERATIVO
|
|
# -----------------------------------------------------------------------------
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# TEMPORALES
|
|
# -----------------------------------------------------------------------------
|
|
tmp/
|
|
temp/
|
|
.cache/
|