Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nhymxu/go-boilerplate

monolith boilerplate for golang app
https://github.com/nhymxu/go-boilerplate

Last synced: about 1 month ago
JSON representation

monolith boilerplate for golang app

Awesome Lists containing this project

README

        

# go-boilerplate

Go boilerplate project

## Getting started

### Install Dependencies

From the project root, run:

```shell
go build ./...
go test ./...
go mod tidy
```

### Update/Upgrade dependencies

```shell
go get -u ./...
```

### Run dev

```shell
# API server
go run main.go api --port 8000 --shutdown_time 10
```