Criação de uma aplicação com microsserviços
https://dillinger.io/ https://stackedit.io/app#
https://www.baeldung.com/ops/kafka-new-topic-docker-compose https://cursos.alura.com.br/forum/topico-sugestao-docker-compose-kafka-zookeeper-e-kakfa-ui-279740
https://geshan.com.np/blog/2023/03/mongodb-docker-compose/
https://commandprompt.com/education/how-to-install-postgresql-using-docker-compose/
git stash
git pull #Quando na Main
git rebase main #Quando na branch
git stash pop
git add .
git commit -m "mensagem-commit"
git push
mkdir src
mkdir test
dotnet new sln -n Credditus
dotnet new xunit -n Credditus.UnitTests
dotnet new webapi -n Credditus.Api -minimal
dotnet new gitignore
dotnet run --project src/Credditus.Api/Credditus.Api.csproj dev-certs https --trust
dotnet sln add ./ProjetoTeste.Tests/ProjetoTeste.Tests.csproj
dotnet add ./Alura.Estacionamento.Tests/Alura.Estacionamento.Tests.csproj reference ./Alura.Estacionamento/Alura.Estacionamento.csproj
dotnet add package Microsoft.EntityFrameworkCore --version 6.0.10
cd ~/
docker-compose up -d --build
docker compose down
https://renatogroffe.medium.com/net-core-3-1-apache-kafka-exemplos-utilizando-mensageria-21fad6e0aab
git init git add . git commit -m "mensagemCommit"
git -config --global user.email "[email protected]" git config --global user.name "Your Name"
git branch -M main git remote add origin [email protected]:rodrigoalura87/numero-secreto.git git push -u origin main
ssh-keygen -t ed25519 -C "[email protected]"
sincronizar git push -u origin main -- Subir código git pull origin main -- Baixar código adicionar repositorio remoto git remote add apelido url.git
git clone https://github.com/rodrigoalura87/numero-secreto.git
quais commits foram realizados no projeto e quem fez git log
desfazer a mensagem do commit ANTERIOR(Só funciona com o anterior) git commit --amend -m "Trocando botao para adivinhar"
REMOVER um commit git log git reset --hard <id_do_commit_anterior>
https://github.com/alura-cursos/3386-git-github/blob/main/README.md?plain=1 https://www.alura.com.br/artigos/escrever-bom-readme?_gl=1*18ny3le*_ga*NjYyMzY0NDQwLjE2OTUyMjk4MzQ.*_ga_1EPWSW3PCS*MTcwMDg2MzA0My4yOS4xLjE3MDA4NjUyMjYuMC4wLjA.*_fplc*cTdiZTBNbHFzeEtONWE4Q01Rb2VLOCUyQll0QXRBZkxXSkE5MFBocUN3cWhPSVFhQWdMdXc3NU9IVGJHYjlNZkFaclBTQktKTnZlQ0hBMFI0MUpmYktqa05TSGl3eUtWcWpPYTFBZ3JjUXpITWtLNTdFM2w2S1NaRFdxVndRVXclM0QlM0Q. https://www.alura.com.br/artigos/como-criar-um-readme-para-seu-perfil-github?_gl=1*ol6kud*_ga*NjYyMzY0NDQwLjE2OTUyMjk4MzQ.*_ga_1EPWSW3PCS*MTcwMDg2MzA0My4yOS4xLjE3MDA4NjUyMzkuMC4wLjA.*_fplc*cTdiZTBNbHFzeEtONWE4Q01Rb2VLOCUyQll0QXRBZkxXSkE5MFBocUN3cWhPSVFhQWdMdXc3NU9IVGJHYjlNZkFaclBTQktKTnZlQ0hBMFI0MUpmYktqa05TSGl3eUtWcWpPYTFBZ3JjUXpITWtLNTdFM2w2S1NaRFdxVndRVXclM0QlM0Q.
https://slides.com/daianealvesrj/software-livre-para-empreendedores https://cursos.alura.com.br/course/git-github-branching-conflitos-pull-requests/task/57949 https://guiferreira.me/
https://learn.microsoft.com/pt-br/visualstudio/containers/tutorial-multicontainer?view=vs-2022
https://github.com/mariotoffia/FluentDocker
https://blog.joaograssi.com/using-docker-compose-for-your-asp-net-ef-core-integration-tests/ https://learn.microsoft.com/en-us/aspnet/core/test/integration-tests?view=aspnetcore-8.0 https://medium.com/geekculture/is-there-a-better-way-of-writing-integration-tests-in-using-containers-net-233de3a23891