Questions tagged [heroku]
31 questions
11
votes
3 answers
Setting up Heroku CLI in WSL
Trying to setup Heroku CLI to work with WSL.
Starting by following the directions here for Ubuntu 16+:
https://devcenter.heroku.com/articles/heroku-cli
sudo snap install --classic heroku
Produces the following error:
error: cannot communicate with…
cheslijones
- 609
3
votes
1 answer
slack bot running stops working occassionally
I'm following heroku's post including this specific section. If I make a noop change and I'm running a new deploy, the bot responds. But then after some time, I see bot stops responding:
The heroku dashboard shows nothing weird (does not show it's…
lf215
- 31
3
votes
0 answers
How to deploy OpenProject on Heroku?
I want to deploy project management software OpenProject on Heroku cloud through docker-compose.yml file.
version: '3'
services:
openproject:
container_name: openproject
image: openproject/community:8
ports:
- 8080:80
…
sandroconte
- 31
3
votes
0 answers
Why does Sourcetree open an authentication window for git.heroku.com?
When I have Sourcetree open, this authentication window will pop up every few minutes:
I've looked through my accounts in the Sourcetree options, and I can't find anything that looks related to this. I remember a long time ago lookng into Heroku…
Svend Hansen
- 276
2
votes
0 answers
How to hide an API Key on heroku for an Angular app
I have the frontend part of a project using Angular and I am trying to find out how to properly hide an API key in a production environment (Heroku).
There are two variables I need to change between the local and production environments, namely the…
Reivilo85k
- 21
2
votes
0 answers
docker-compose: no pg_hba.conf entry for host
I'm trying to make a few containers that are started by a docker-compose to work with a remote AWS database (managed by Heroku). I configured the envs as shown bellow:
environment:
- PG_HOST=xxx.compute-1.amazonaws.com
- PG_USER=xxx
…
Arthur Silva
- 21
2
votes
2 answers
How to use GitKraken on Heroku
I'm new to using Heroku and I noticed that the way we push our code to it is by using git commands.
I was wondering if it's possible to use GitKraken to do it.
I used GitKraken only on 2 BitBucket projects, but I don't know how to configure and…
1
vote
0 answers
recommendations for deploying a slack/bolt app to the cloud?
I've been trying to deploy my slack/bolt app, which works fine on Glitch, to AWS Lambda. Since we already use AWS, it seemed an obvious choice from the list provided on Slack.com.
I was able to get a sample app up and running (from this demo here,…
ethanh
- 11
1
vote
1 answer
heroku run bash gives error: ! ! ETIMEDOUT: connect ETIMEDOUT 50.19.103.36:5000
I'm trying to use heroku run bash on windows 10, but get the following error:
>heroku run bash
Running bash on ⬢ map-test-portal... !
! ETIMEDOUT: connect ETIMEDOUT 50.19.103.36:5000
I have tried allowing the port 5000 through the firewall and…
1
vote
1 answer
Heroku cannot find module when path uses "../"
When I deployed my Node project that uses express/mongoose to Heroku and looked at the logs it showed
Error: Cannot find module '../models/Posts'
Which is required in my index.js file as
const Posts = require('../models/Posts');
This path works…
Brendan
- 11
1
vote
1 answer
Heroku Error: ENOENT: no such file or directory, stat '/app/client/build/index.html'
App repo: https://github.com/calebkish/DevConnector
To preface, my web app has been pushed to Heroku.
I'm trying to successfully build my MERN web application onto Heroku, but when I visit my app page (https://safe-fortress-83003.herokuapp.com/), it…
user1017131
1
vote
0 answers
Heroku, Code=10 Status=503
I am trying to deploy my ruby on rails project to heroku and i am having the following problems.
2019-03-30T19:36:08.379480+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/" host=nameless-oasis-71818.herokuapp.com…
jaymccoy300
- 11
1
vote
0 answers
heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/"
I push my app to Heroku. It was built and deployed but crashed. The app runs perfectly on local.
Moonish
- 11
1
vote
1 answer
Ruby version 2.3.3 Gemfile 2.3.0 (Sprockets Update)
I'm a newbie at Ruby on Rails. I'm trying to update the Gemfile but it keeps giving me this error: "Your Ruby version is 2.3.3, but your Gemfile specified 2.3.0"
The reason I'm trying to update the gem file is because of a security vulnerability:
0
votes
0 answers
How to obtain private key from LetsEncrypt trough Heroku?
I'm using Automated Certificate Management on Heroku through Letsencrypt.
We're moving our app to a different hosting environment and would like to move the certificate to this new server as well.
Is it possible to extract the private key from…
jorrebor
- 101