├── .gitignore ├── Backend ├── .gitignore ├── Backend.sln └── Backend │ ├── Backend.csproj │ ├── Controllers │ ├── AuthController.cs │ ├── MusicsController.cs │ └── ValuesController.cs │ ├── DataAccess │ ├── Abstruct │ │ ├── EfEntityRepositoryBase.cs │ │ ├── IAuthRepository.cs │ │ ├── IEntityRepository.cs │ │ └── IMusicDal.cs │ ├── Concrete │ │ ├── AuthRepository.cs │ │ └── EFMusicDal.cs │ └── DataContext.cs │ ├── Dtos │ ├── UserLoginDto.cs │ └── UserRegisterDto.cs │ ├── Entities │ ├── IEntity.cs │ ├── Music.cs │ └── User.cs │ ├── Helpers │ └── JwtExtension.cs │ ├── Migrations │ ├── 20190609083747_Inital.Designer.cs │ ├── 20190609083747_Inital.cs │ ├── 20190614082213_ImplementedUserEntity.Designer.cs │ ├── 20190614082213_ImplementedUserEntity.cs │ └── DataContextModelSnapshot.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── App.css ├── App.js ├── App.test.js ├── actions │ └── musics.js ├── components │ ├── Footer.js │ ├── Header.js │ ├── MusicList.js │ └── pages │ │ └── MusicsPage.js ├── environment │ └── environment.js ├── helpers │ └── styleHelpers.js ├── index.css ├── index.js ├── logo.svg ├── reducers │ ├── musics.js │ └── rootReducer.js └── serviceWorker.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/.gitignore -------------------------------------------------------------------------------- /Backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/.gitignore -------------------------------------------------------------------------------- /Backend/Backend.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend.sln -------------------------------------------------------------------------------- /Backend/Backend/Backend.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/Backend.csproj -------------------------------------------------------------------------------- /Backend/Backend/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/Controllers/AuthController.cs -------------------------------------------------------------------------------- /Backend/Backend/Controllers/MusicsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/Controllers/MusicsController.cs -------------------------------------------------------------------------------- /Backend/Backend/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /Backend/Backend/DataAccess/Abstruct/EfEntityRepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/DataAccess/Abstruct/EfEntityRepositoryBase.cs -------------------------------------------------------------------------------- /Backend/Backend/DataAccess/Abstruct/IAuthRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/DataAccess/Abstruct/IAuthRepository.cs -------------------------------------------------------------------------------- /Backend/Backend/DataAccess/Abstruct/IEntityRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/DataAccess/Abstruct/IEntityRepository.cs -------------------------------------------------------------------------------- /Backend/Backend/DataAccess/Abstruct/IMusicDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/DataAccess/Abstruct/IMusicDal.cs -------------------------------------------------------------------------------- /Backend/Backend/DataAccess/Concrete/AuthRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/DataAccess/Concrete/AuthRepository.cs -------------------------------------------------------------------------------- /Backend/Backend/DataAccess/Concrete/EFMusicDal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/DataAccess/Concrete/EFMusicDal.cs -------------------------------------------------------------------------------- /Backend/Backend/DataAccess/DataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/DataAccess/DataContext.cs -------------------------------------------------------------------------------- /Backend/Backend/Dtos/UserLoginDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/Dtos/UserLoginDto.cs -------------------------------------------------------------------------------- /Backend/Backend/Dtos/UserRegisterDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/Dtos/UserRegisterDto.cs -------------------------------------------------------------------------------- /Backend/Backend/Entities/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/Entities/IEntity.cs -------------------------------------------------------------------------------- /Backend/Backend/Entities/Music.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/Entities/Music.cs -------------------------------------------------------------------------------- /Backend/Backend/Entities/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/Entities/User.cs -------------------------------------------------------------------------------- /Backend/Backend/Helpers/JwtExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/Helpers/JwtExtension.cs -------------------------------------------------------------------------------- /Backend/Backend/Migrations/20190609083747_Inital.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/Migrations/20190609083747_Inital.Designer.cs -------------------------------------------------------------------------------- /Backend/Backend/Migrations/20190609083747_Inital.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/Migrations/20190609083747_Inital.cs -------------------------------------------------------------------------------- /Backend/Backend/Migrations/20190614082213_ImplementedUserEntity.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/Migrations/20190614082213_ImplementedUserEntity.Designer.cs -------------------------------------------------------------------------------- /Backend/Backend/Migrations/20190614082213_ImplementedUserEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/Migrations/20190614082213_ImplementedUserEntity.cs -------------------------------------------------------------------------------- /Backend/Backend/Migrations/DataContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/Migrations/DataContextModelSnapshot.cs -------------------------------------------------------------------------------- /Backend/Backend/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/Program.cs -------------------------------------------------------------------------------- /Backend/Backend/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/Properties/launchSettings.json -------------------------------------------------------------------------------- /Backend/Backend/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/Startup.cs -------------------------------------------------------------------------------- /Backend/Backend/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/appsettings.Development.json -------------------------------------------------------------------------------- /Backend/Backend/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/Backend/Backend/appsettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/actions/musics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/src/actions/musics.js -------------------------------------------------------------------------------- /src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/src/components/Footer.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/MusicList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/src/components/MusicList.js -------------------------------------------------------------------------------- /src/components/pages/MusicsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/src/components/pages/MusicsPage.js -------------------------------------------------------------------------------- /src/environment/environment.js: -------------------------------------------------------------------------------- 1 | export const serverUrl = "http://localhost:37987/api/" -------------------------------------------------------------------------------- /src/helpers/styleHelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/src/helpers/styleHelpers.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/reducers/musics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/src/reducers/musics.js -------------------------------------------------------------------------------- /src/reducers/rootReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/src/reducers/rootReducer.js -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hidayatarg/react-full-stack-Asp.netCore-MusicStore/HEAD/yarn.lock --------------------------------------------------------------------------------