Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 637 Bytes

File metadata and controls

18 lines (15 loc) · 637 Bytes

Install Dependencies

  • npm i redux react-redux redux-thunk --save

  • npm i redux-devtools-extension --save

  • npm i react-router-dom --save

  • npm i semantic-ui-react --save

  • npm i semantic-ui-css --save Redux Logger

  • npm i redux-logger --save Now we can read the states from console.

Entity Framework Backend

Add migration

  • in Mac, Linux (CLI) dotnet ef migrations add <migrationName>
  • in windows(Visual Studio) (NuGet Package Console) Add-Migration <migrationName>

Update database

  • in Mac, Linux (CLI) dotnet ef database update
  • in windows(Visual Studio) (NuGet Package Console) Update-Database