Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 525 Bytes

Readme.md

File metadata and controls

28 lines (18 loc) · 525 Bytes

Golang Gin

Hello World using the Gin framework.

Install dependencies

This will install the required dependencies and uses the Go Dependency Management Tool, which you may need to install.

$ dep ensure

Deploy

$ up

Notes

Typically in .upignore you'd list specific files or directories to omit, however in cases such as Golang where you deploy a single binary, it may be simpler to blacklist all files, and whitelist the ./server binary.

*
!server