Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.
/ DevJobs.API Public archive
forked from luisdeol/dev-jobs

🟣 C# e .NET 6 (4ª ed.)

License

Notifications You must be signed in to change notification settings

samuel-oldra/DevJobs.API

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DevJobs - Jornada .NET Direto ao Ponto

Tecnologias e práticas utilizadas • Funcionalidades • Comandos

Foi desenvolvida uma API REST completa de gerenciamento de vagas de emprego e aplicação de vagas.

Tecnologias e práticas utilizadas

  • ASP.NET Core com .NET 6
  • Entity Framework Core
  • In-Memory database
  • Swagger (documentação)
  • Serilog (log)
  • Programação Orientada a Objetos
  • Injeção de Dependência
  • Padrão Repository
  • Clean Code
  • Publicação

Funcionalidades

  • Cadastro, Listagem, Detalhes, Atualização de Vaga de Emprego
  • Aplicação a Vaga de Emprego

alt text

Comandos

Comandos básicos

dotnet new gitignore
dotnet new webapi -o DevJobs.API

dotnet build
dotnet run
dotnet watch run

dotnet publish

Comandos user-secrets

dotnet user-secrets init
dotnet user-secrets set "ConnectionStrings:DevJobsCs" "Server=***;Database=***;User ID=***;Password=***;"
dotnet user-secrets remove "ConnectionStrings:DevJobsCs"
dotnet user-secrets clear
dotnet user-secrets list

Tool Entity Framework Core (migrations)

dotnet tool install --global dotnet-ef
dotnet tool uninstall --global dotnet-ef

Migrations

dotnet ef migrations add InitialMigration -o Persistence/Migrations
dotnet ef database update