Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.

Latest commit

 

History

History
64 lines (41 loc) · 1.08 KB

File metadata and controls

64 lines (41 loc) · 1.08 KB

Meow Lib backend

Backend for frontend version

Requirements

Start up

Clone repository

git clone https://github.com/ProjectMeowInc/MeowLib.Backend.git

cd MeowLib.Backend

Start migrations

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();
}

Start

Develop version:

dotnet run --project ./src/MeowLib.WebApi

Production version:

dotnet run --project ./src/MeowLib.WebApi --configuration Release

Usage

In develop environments available swagger: http://localhost:5000/swagger/index.html

You can use this API with frontend version.

Or create your own