Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ademalidurmus/golang-rest-api-example
- Owner: ademalidurmus
- Created: 2020-11-07T17:36:38.000Z (about 4 years ago)
- Default Branch: develop
- Last Pushed: 2020-12-15T20:28:54.000Z (almost 4 years ago)
- Last Synced: 2024-05-12T05:51:00.600Z (6 months ago)
- Language: Go
- Homepage:
- Size: 17.6 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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"
```