http.HandleFunc("/", homePage)
http.HandleFunc("/articles", returnAllArticles)
log.Fatal(http.ListenAndServe(":10000", nil))
}
локально http://localhost:10000/articles мне возвращает данные
но когда я хочу их взять с хероку по https://in-hunt-server.herokuapp.com:10000/articles
ничего не происходит.
heroku logs пишут:
heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/:10000/articles" host=in-hunt-server.herokuapp.com
Судя по https://devcenter.heroku.com/articles/getting-started-with-go?singlepage=true, Heroku пишет порт в переменную окружения PORT, которую и нужно использовать
Обсуждают сегодня