Skip to content

Instantly share code, notes, and snippets.

View cgalvist's full-sized avatar

César Galvis cgalvist

View GitHub Profile
@cgalvist
cgalvist / dev-docker-containers.md
Last active July 12, 2023 21:02
Useful docker-compose examples (dev)

Docker Compose examples

Docker Compose examples for local development and tests environments.

SonarQube

Check this page for show solutions with memory errors

# Make volumes
@cgalvist
cgalvist / ef-migrations.demo.md
Created June 28, 2023 15:30
Demostración EF Migrations
@cgalvist
cgalvist / docker-windows.md
Last active May 23, 2023 16:05
Instalar docker engine en Windows

Instalación de Docker engine (Windows - WSL)

Prerequisitos

  • No tener instalado Docker Desktop
  • Tener WSL 2 instalado. Instrucciones aquí.
  • Tener una distribución de Linux instalada desde la tienda de Microsoft (en este ejemplo, Ubuntu 22.04)

Instalación

@cgalvist
cgalvist / dotnet-template.md
Last active October 26, 2023 16:55
dotnet clean architecture template

Basic .NET template generator (clean architecture) and common files

# PARAMETERS
COMPANY=CompanyName
SYSTEM=SystemName
PROJECT=ProjectName
SOLUTION_NAME=$COMPANY.$SYSTEM.$PROJECT
FRAMEWORK=net6.0