An open API service indexing awesome lists of open source software.

https://github.com/hidayatarg/react-full-stack-asp.netcore-musicstore

This is a Demo Projec. Backend in ASP.net Core Web API, Frontend: React.js, Database: PostGreSQL. #CRUD #JWT Authentication and Authorization
https://github.com/hidayatarg/react-full-stack-asp.netcore-musicstore

Last synced: 19 days ago
JSON representation

This is a Demo Projec. Backend in ASP.net Core Web API, Frontend: React.js, Database: PostGreSQL. #CRUD #JWT Authentication and Authorization

Awesome Lists containing this project

README

        

## 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 `
- in windows(Visual Studio) (NuGet Package Console) `Add-Migration `

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