/go-getting-started

Getting Started with Go on Heroku https://devcenter.heroku.com/articles/getting-started-with-go

Primary LanguageDockerfile

go-getting-started

A barebones Go app, which can easily be deployed to Heroku.

This application supports the Getting Started with Go on Heroku article - check it out.

Running Locally

Make sure you have Go version 1.12 or newer and the Heroku Toolbelt installed.

$ git clone https://github.com/heroku/go-getting-started.git
$ cd go-getting-started
$ go build -o bin/go-getting-started -v . # or `go build -o bin/go-getting-started.exe -v .` in git bash
github.com/mattn/go-colorable
gopkg.in/bluesuncorp/validator.v5
golang.org/x/net/context
github.com/heroku/x/hmetrics
github.com/gin-gonic/gin/render
github.com/manucorporat/sse
github.com/heroku/x/hmetrics/onload
github.com/gin-gonic/gin/binding
github.com/gin-gonic/gin
github.com/heroku/go-getting-started
$ heroku local

Your app should now be running on localhost:5000.

Deploying to Heroku

$ heroku create
$ git push heroku main
$ heroku open

or

Deploy

Heroku tools

# Monitor service times in router logs
heroku logs -t -d router | agrind \
  '*
    | parse "T*.*" as time, msg
    | logfmt from msg
    | avg(service), p95(service), p99(service), count by time
    | sort by time desc'

Documentation

For more information about using Go on Heroku, see these Dev Center articles: