Skip to content

utsavgupta/go-webservice-starter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Go Web Service Starter Project

Build Status

The project provides a basic setup for writing web services in Go.

It uses the following external dependencies.

Running the Application

The project can be run either as a native application on your system or as a container using the provided Docker file.

Running the Application Natively

$ export APP_STAGE=local
$ export APP_PORT=8080
$ go run .

Running the Application as a Container

$ docker build . -t go-webservice-starter:latest
$ docker run -d -p 8080:8080 -e APP_STAGE=local -e APP_PORT=8080 go-webservice-starter:latest

About

A starter template for Go web services

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published