Simple implementation of a REST application for e-commerce with ASP.NET core 5.0
Need a dependency of the .NET core SDK 5.0
git clone https://github.com/eldiablo-1226/Diablo-Cms-Ecommerce.git
cd Diablo-Cms-Ecommerce
dotnet run --project DiabloCms.Server
JWT Bearer token. Change this value to production version.
File path - DiabloCms.Server / appsettings.json
"JWTToken": "{YourKey}"
Connection string
File path - DiabloCms.Data / CmsDbContextFactory.cs
private const string MsSqlConnectionString = "{Connection-String}";
dotnet ef migrations add Init --project DiabloCms.Data
dotnet ef database update --project DiabloCms.Data
Sentry Api key
File path - DiabloCms.Server / Program.cs
webHostBuilder.UseSentry(o =>
{
o.Dsn = "{YourKey}";
o.ServerName = "DiabloCms";
...
});
- .NET Core 5.0
- ASP.NET Core WebApi 5.0
- Entity Framework Core 5.0
- AutoMapper
- HarabaSourceGenerators.Generators
- Sentry
- Swagger
- Instagram: s_shaxzod_1226
- Telegram: @Diablo26
This project is licensed under MIT license.