Files
roi-theme/.gitignore
FrankZamora 30b30b065b feat: add OpenSpec slash commands for Claude Code
- Remove .claude/ from .gitignore to share commands with team
- Add /openspec:proposal command for creating change proposals
- Add /openspec:apply command for implementing changes
- Add /openspec:archive command for archiving completed changes

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-05 12:59:05 -06:00

77 lines
933 B
Plaintext

# WordPress configuration file
wp-config.php
# Uploads directory (user generated content)
wp-content/uploads/
# Cache directories
wp-content/cache/
wp-content/backup/
wp-content/backups/
wp-content/upgrade/
# Advanced Cache
wp-content/advanced-cache.php
# Object cache
wp-content/object-cache.php
# Server configs
.htaccess
# Log files
*.log
error_log
debug.log
# System files
.DS_Store
Thumbs.db
Desktop.ini
# Temporary files
*.tmp
*.temp
*.swp
*.swo
*~
# Node modules (si hay desarrollo frontend)
node_modules/
npm-debug.log
# PHPUnit
.phpunit.result.cache
/tests/_output/
# Environment files
.env
.env.*
# IDE files
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
# Git
.git/
# Backup files
*.sql
*.sql.gz
*.tar.gz
*.zip
# Planning and documentation
_planeacion/
# Testing infrastructure (composer, phpunit, phpcs configs and dependencies)
_testing-suite/
# Claude Code tools
.playwright-mcp/
.serena/
nul