This is one of the main survey data provider module for SurveyShrike application. This service only deals with the survey management part and has separate database.
Clean Architecture – pplications that follow the Dependency Inversion Principle as well as the Domain-Driven Design (DDD) principles tend to arrive at a similar architecture. This architecture has gone by many names over the years. One of the first names was Hexagonal Architecture, followed by Ports-and-Adapters. More recently, it's been cited as the Onion Architecture or Clean Architecture.
Each layer communication diagram
Use these instructions to get the project up and running.
You will need the following tools:
- Visual Studio Code or Visual Studio 2019 (version 16.3 or later)
- .NET Core SDK 3
- Node.js (version 10 or later) with npm (version 6.11.3 or later)
Note: It requires the Identity server to be up and running. Follow these steps to get your development environment set up:
-
Clone the repository
-
Open the command prompt to project root directory SurveyShrike-API
dotnet restore
-
Next, build the solution by running:
dotnet build
-
Next, within the
SurveyShrike-API
(root) directory, launch the API server by running:dotnet run --project .\SurveyShrike-API\SurveyShrike-API.csproj
-
Once the server has started, within the navigate to "http://localhost:8080/swagger, If it does not give error, We have successfully started API server.
- .NET Core 3
- ASP.NET Core 3
- Entity Framework Core 3
- SurveyShrike-API- Actual identity server API's.
- SurveyShrike-API.Application - It contains business-logic and types
- SurveyShrike-API.Persistence - contains all external concerns like database & migrations
- SurveyShrike-API.Domain- contains enterprise-wide logic and types
- -SurveyShrike-API.Common- common entities accross the api