Skip to content

VulderApp/Admin

Repository files navigation

Admin

Test codecov

Microservice to manage vulder app database

Run development server

$ docker-compose -f docker-compose.dev.yml up -d
$ dotnet restore
$ dotnet watch --project ./src/Vulder.Admin.Api

Build a release

$ dotnet restore
$ dotnet build
$ dotnet publish ./src/Vulder.Admin.Api -c Release

Build a docker image

$ docker build -t vulderapp/admin:release .

Run migrations

export POSTGRES_CONNECTION_STRING=connection_string
$ dotnet ef database update --project ./src/Vulder.Admin.Infrastructure