Follow the steps here to walk you through the process of deploying a Go application to Elastic Beanstalk Step 1: Create Go project Create Go project with application.go: package main import ( "encoding/json" "log" "net/http" "os" ) func main() { port := os.Getenv("PORT") if port == "" { port = "5000" } f, _ := … Continue reading Deploy Go in AWS Beanstalk