I've created a go application in openshift using the go cartridge but when I've updated my code to use beego when I push it I keep getting errors like:
An error occurred executing 'gear postreceive' (exit code: 1)
and Error message: CLIENT_ERROR: Failed to execute: 'control build'
In my app.conf I've set the host and the port base on what openshift will provide. httphost = os.Getenv("HOST") httpport = os.Getenv("PORT")
But I still getting the errors mention above.
Thanks in advance guys