Skip to content

PRN231 Project - Real-time drawing app with Microservices architecture

Notifications You must be signed in to change notification settings

Projekt-Reddo/midraplus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MiDraplus project

React TS & Microservices API backend with SignalR

1. Installation

Every installation part will start from root folder.

1.1 Client app - React TS

If there is an error about not found NPM you can read NPM install guide at the Q&A part

cd client
npm install

1.2 Server api - Microservices APIs with ASP.NET

If there is an error about not found Dotnet you can read Dotnet install guide at the Q&A part

Open terminal in approriate folder (api/name_service) and run:

dotnet restore

Work the same for other services

2. Run app in development

Every run part will start from root folder.

2.1 Client app - React TS

cd client
npm start

2.2 Server api - Microservices APIs with ASP.NET

Open terminal in approriate folder (api/name_service/NameService) and run:

dotnet watch run

Work the same for other services

Q & A