Skip to content

Latest commit

 

History

History
51 lines (30 loc) · 1.16 KB

File metadata and controls

51 lines (30 loc) · 1.16 KB

Online book store with .net core and angular

Tech stack

  • .Net core 8 (APIs)
  • Entity Framework Core (ORM)
  • Sqlite (Database)
  • xUnit for unit and integration tests
  • Angular 18 (client side)
  • Ngrx for state management

How to run the project

This repository contains both .net core and angular appliction.

Running .net application

  • Open the root directory in vs code
  • Open integrated terminal and change directory to BookStoreFullStackNg.Data and run the migration command dotnet ef database update
  • Open a new integrated terminal and change the directory to the BookStoreFullStackNg.Api and run command dotnet run
  • Open the new integrated terminal and change the directory to the bookstore-fullstack-ng-client and run the command ng serve --open

Screenshots

1

2

3

4

5

6

7

8

9

10

11

12

13

14