ASP.NET Core / Angular Web App
- Install :
ASP.NET Core SDK,Node.js,Git - Install Angular/CLI :
npm install -g @angular/cli - Clone the solution
- Install packages after cd to API directory
dotnet restore - Build to check the solution and create the database (could be created when running migrations)
- Run migrations after cd to API directory
dotnet ef database update - Install
nodes_modulesafter cd to SPA directorynpm install - Run the API, it will also seed the database
dotnet runordotnet watch run - Finally run the SPA
ng serveand get the url.