Skip to content

.NET Core 6 Web API following Clean Code + Domain Driven Design.

Notifications You must be signed in to change notification settings

MarcoDSilva/Open-Bank-Api

Repository files navigation

Open Bank

An Bank Web API following Clean Code + Domain Driven Design.

My Tech Stack

Run Locally

Clone the project

  git clone https://github.com/MarcoDSilva/Open-Bank-Api.git

Run the docker composer (Sidenote: uncomment the postgresql lines and associate the ports with the ones from the connection string , or the ports you prefer)

  docker compose up

Go to the project directory

  cd Open-Bank-Api

Create the database (if the postgresql container is not running this will fail)

  dotnet ef database update

Start the server

  cd .\OpenBank.API\
  dotnet run