Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ademalidurmus/golang-rest-api-example

Golang REST API Example
https://github.com/ademalidurmus/golang-rest-api-example

Last synced: about 1 month ago
JSON representation

Golang REST API Example

Awesome Lists containing this project

README

        

## Golang REST API Example

### API Documentation

API documentation available at [Postman Public Directory](https://documenter.getpostman.com/view/5001481/TVeiDWGp)

### Docker
If you want to build this service:
```
docker-compose up --build
```

If you want to run this service in the background:
```
docker-compose up -d
```

If you want to stop this service:
```
docker-compose stop
```

If you want to real time build when you are coding:
```
brew install watchexec
docker-compose up -d
watchexec --restart --exts "go" --watch . "docker-compose up --build"
```