You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
527 B
53 lines
527 B
# Git |
|
.git |
|
.gitignore |
|
|
|
# Docker |
|
Dockerfile |
|
docker-compose.yml |
|
.dockerignore |
|
|
|
# Documentation |
|
README.md |
|
DOCKER_README.md |
|
*.md |
|
|
|
# Logs |
|
*.log |
|
logs/ |
|
|
|
# Cache and temporary files |
|
cache/ |
|
temp/ |
|
tmp/ |
|
|
|
# IDE files |
|
.vscode/ |
|
.idea/ |
|
*.swp |
|
*.swo |
|
|
|
# OS files |
|
.DS_Store |
|
Thumbs.db |
|
|
|
# Node modules (if any) |
|
node_modules/ |
|
|
|
# Backup files |
|
*.bak |
|
*.backup |
|
|
|
# Environment files |
|
.env |
|
.env.local |
|
.env.production |
|
|
|
# Composer |
|
composer.lock |
|
|
|
# Phinx migrations (will be handled by init scripts) |
|
db/migrations/ |
|
|
|
# Personalizaciones (si las hay) |
|
src/pers/
|
|
|