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_modules
after cd to SPA directorynpm install
- Run the API, it will also seed the database
dotnet run
ordotnet watch run
- Finally run the SPA
ng serve
and get the url.