Hey Dist, how would I go about using HTTPS with Heroku ? I thought it was required to use http with heroku ?
Currently my server is done this way:
const PORT = process.env.PORT || 3000;
const _httpServer = http.createServer(_credentials,_app);
_httpServer.listen(PORT, () => {
console.log('Server is now running on port '+PORT);
});