Categorygithub.com/serge-v/zero
repositorypackage
1.0.1
Repository: https://github.com/serge-v/zero.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author

# README

Zero

Build and deploy golang application in a second.

Usage

Add to your application:

var deploy = flag.Bool("deploy", false, "deploy to zero environment")

func main() {
	flag.Parse()

	if *deploy {
		if err := zero.Deploy(8095); err != nil {
			log.Fatal(err)
		}
	}

	println("hello world")	
}

Run:

go build && ./myapp -deploy