Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 604 Bytes

README.md

File metadata and controls

12 lines (11 loc) · 604 Bytes

DatingApp

ASP.NET Core / Angular Web App

  1. Install : ASP.NET Core SDK, Node.js, Git
  2. Install Angular/CLI : npm install -g @angular/cli
  3. Clone the solution
  4. Install packages after cd to API directory dotnet restore
  5. Build to check the solution and create the database (could be created when running migrations)
  6. Run migrations after cd to API directory dotnet ef database update
  7. Install nodes_modules after cd to SPA directory npm install
  8. Run the API, it will also seed the database dotnet run or dotnet watch run
  9. Finally run the SPA ng serve and get the url.