Skip to content

QuinntyneBrown/DblDip

Repository files navigation

DblDip (Double Dip)

Photography Business Management Software using ASP.NET Core and Angular 10 to support my side passion of photography.

Give a Star! ⭐

If you like or are using this project to learn or start your solution, please give it a star. Thanks!

How to run locally

  1. Download and install the .NET Core SDK
  2. Open a terminal such as PowerShell, Command Prompt, or bash and navigate to the src/DblDip.Api folder
  3. Run the following dotnet commands:
dotnet build
dotnet run
  1. Open your browser to: https://localhost:5001.
  2. Download and install the node package manager
  3. Open a terminal such as PowerShell, Command Prompt, or bash and navigate to the src/DblDip.Frontend folder
  4. Run the following commands:
npm install -g @angular/cli
npm install
ng serve
  1. Open your browser to: https://localhost:4200.

To Run the Integration tests

  1. Download and install the .NET Core SDK
  2. Open a terminal such as PowerShell, Command Prompt, or bash and run the following command: dotnet test