Skip to content

Instantly share code, notes, and snippets.

View diegorondao's full-sized avatar
💻

Diego Rondão diegorondao

💻
View GitHub Profile
@diegorondao
diegorondao / docker-compose.yml
Created July 31, 2024 20:45
Análise de código com SonarQube + Docker + .NET Core
version: '3'
services:
postgresql:
image: bitnami/postgresql:latest
ports:
- '5444:5432'
volumes:
- 'postgresql_data:/bitnami/postgresql'
environment:
@diegorondao
diegorondao / conventional_commits_pt-BR.md
Last active March 2, 2023 13:24
Guia para mensagens de commits

Guia para mensagens de commits

Formato da mensagem

Cada mensagem de commit consiste em um cabeçalho, um corpo e um rodapé.

Cabeçalho

Tem um formato pré-definido, que inclui um tipo e um título:

@diegorondao
diegorondao / settings.json
Last active July 31, 2024 20:46
Visual Studio Code | User | Settings
{
"breadcrumbs.enabled": false,
"diffEditor.ignoreTrimWhitespace": false,
"terminal.integrated.fontSize": 14,
"terminal.integrated.fontFamily": "FiraCode Nerd Font",
"terminal.integrated.lineHeight": 1.2,
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.tabs.enabled": false,
"terminal.integrated.showExitAlert": false,
@diegorondao
diegorondao / ambiente-dev-linux.md
Last active June 10, 2024 17:33
Ambiente de desenvolvimento no Linux - Com VS Code, ZSH, Oh-my-zsh, zsh-syntax-highlighting, zsh-autosuggestions e ASDF.