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

https://github.com/fhightower/cloud-run-go-example

A simple Go service designed for both local development and cloud deployment.
https://github.com/fhightower/cloud-run-go-example

Last synced: about 1 year ago
JSON representation

A simple Go service designed for both local development and cloud deployment.

Awesome Lists containing this project

README

          

# Simple Go Service

This is a simple service, written in Go, which is dockerized so it can be run locally with:

```
docker-compose run --rm serve
```

(visible at https://localhost:8080)

The serve can also be deployed to [Cloud Run](https://cloud.google.com/run/) with:

```
gcloud run deploy
```

The code itself is from [the Go quickstart](https://cloud.google.com/run/docs/quickstarts/build-and-deploy/deploy-go-service).