https://github.com/ericklima-ca/test-circli
https://github.com/ericklima-ca/test-circli
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ericklima-ca/test-circli
- Owner: ericklima-ca
- Created: 2022-07-10T00:20:12.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-07-10T01:17:43.000Z (almost 4 years ago)
- Last Synced: 2025-10-14T00:08:08.171Z (8 months ago)
- Language: Go
- Size: 1.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-getting-started
A barebones Go app, which can easily be deployed to Heroku.
This application supports the [Getting Started with Go on Heroku](https://devcenter.heroku.com/articles/getting-started-with-go) article - check it out.
## Running Locally
Make sure you have [Go](http://golang.org/doc/install) version 1.17 or newer and the [Heroku CLI](https://devcenter.heroku.com/articles/heroku-cli) installed.
```sh
$ 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](http://localhost:5000/).
## Deploying to Heroku
```sh
$ heroku create
$ git push heroku main
$ heroku open
```
or
[](https://heroku.com/deploy)
## Documentation
For more information about using Go on Heroku, see these Dev Center articles:
- [Go on Heroku](https://devcenter.heroku.com/categories/go)