Skip to content

Commit

Permalink
Improve README.md (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
MRmlik12 authored Apr 20, 2022
1 parent 23f7de7 commit 7a4063e
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
# Timetable
[![Test](https://github.com/VulderApp/Timetable/actions/workflows/test.yml/badge.svg)](https://github.com/VulderApp/Timetable/actions/workflows/test.yml)

Timetable service for getting school branches and timetables
Microservice for getting school branches and timetables

## Run development server
```bash
$ docker-compose -f docker-compose.dev.yml up -d
$ dotnet restore
$ dotnet watch --project ./src/Vulder.Timetable.Api
```

## Build a release
```bash
$ dotnet restore
$ dotnet build
$ dotnet publish ./src/Vulder.Timetable.Api -c Release
```

## Build a docker image
```bash
$ docker build -t vulderapp/timetable:release .
```
## Run a docker image
```bash
$ docker run -p 80:80 -e BASE_API_URL=api_url -e REDIS_CONNECTION_STRING=connection_string vulderapp/timetable:release
```

0 comments on commit 7a4063e

Please sign in to comment.