Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 867 Bytes

README.md

File metadata and controls

28 lines (24 loc) · 867 Bytes

Search

Test codecov

Microservice responsible for school management

Run development server

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

Build a release

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

Build a docker image

$ docker build -t vulderapp/school:release .

Run a docker image

$ docker run -p 80:80 -e MONGODB_CONNECTION_STRING=connection_string -e REDIS_CONNECTION_STRING=connection_string vulderapp/school:release