I'm trying to use Codenvy to develop Go server apps, but I don't know how to run. I have already created the project and choose the Web Go runner environment. But when I run it, the project run in a different URL port that I have defined.
Have some way to not use an http port an use a dynamic port?
http.ListenAndServe("{get_url_port}", nil)
instead
http.ListenAndServe(":8080", nil)