36 lines
323 B
Markdown
36 lines
323 B
Markdown
# dttmr-api
|
|
|
|
An API backend for dittmar.dev, written in Go.
|
|
|
|
## Getting started
|
|
|
|
Building
|
|
```shell
|
|
make build
|
|
```
|
|
|
|
Running
|
|
```shell
|
|
make run
|
|
```
|
|
|
|
Run tests
|
|
```
|
|
make test
|
|
```
|
|
|
|
Run tests with coverage
|
|
```
|
|
make test-cover
|
|
```
|
|
|
|
Generate swagger documentation
|
|
```shell
|
|
make swag
|
|
```
|
|
|
|
Build docker image
|
|
```shell
|
|
make docker
|
|
```
|