27 lines
311 B
Plaintext
27 lines
311 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Docker (No queremos que el Dockerfile se copie a sí mismo)
|
|
Dockerfile
|
|
docker-compose.yml
|
|
.dockerignore
|
|
|
|
# .NET (Backend)
|
|
**/bin/
|
|
**/obj/
|
|
**/.vs/
|
|
**/.vscode/
|
|
*.user
|
|
*.suo
|
|
|
|
# Node.js / React (Frontend)
|
|
**/node_modules/
|
|
**/dist/
|
|
**/build/
|
|
npm-debug.log*
|
|
|
|
# Varios
|
|
.DS_Store
|
|
.env
|
|
.history/ |