Backend for frontend version
git clone https://github.com/ProjectMeowInc/MeowLib.Backend.git
cd MeowLib.Backend
EF tools:
dotnet ef database update --startup-project ./src/MeowLib.WebApi
On Windows also:
./.tools/startMigrations.bat
Also migrations auto-applied in DEV environments:
if (app.Environment.IsDevelopment())
{
app.ApplyMigrations();
}Develop version:
dotnet run --project ./src/MeowLib.WebApi
Production version:
dotnet run --project ./src/MeowLib.WebApi --configuration Release
In develop environments available swagger: http://localhost:5000/swagger/index.html
You can use this API with frontend version.
Or create your own