This repository contains two applications:
- Dotnet Core API
- Angular
The purpose is to provide a basic example of integration between these two technologies
(Just to remember you need to have the Net SDK previously installed)
After clone this repo, open a terminal in the directory DatingApp.API and run
- dotnet restore
- dotnet watch run
The first command will install the required dependencies for the application and the second will start a server instance listening on port 5000
(Again to remember you need to have the Angular CLI previously installed)
Open a terminal in the directory DatingApp.SPA and run
- npm install
- ng serve --open
The first command will install the required dependencies for the application and the second will start a node server instance listening on port 4200