Questions tagged [heroku-cli]

Use this tag for questions associated with the Heroku Command Line Interface (CLI).

This tag is for the Heroku CLI.

711 questions
0
votes
1 answer

local git repository with two remote git repositories

On my local git repo, I used to push it to two different remote repo, one on github and another on heroku. Now my local is stuck on heroku repo and I want to create a branch from github master branch. How can I change from heroku to github(origin)?…
Hokhy Tann
  • 1,249
  • 1
  • 9
  • 14
0
votes
1 answer

Heroku local [WARN] No ENV file found when using Config library to manage environments

I'm using Config library to mange my environments, so i do not have .env file, how to make heroku ignore this fact ?. It work fine when i deploy to Heroku, but fails locally. I tried: heroku local web which fires npm run build && node dist/Server…
Sunny
  • 543
  • 10
  • 17
0
votes
0 answers

Error connecting to Postgres db in Heroku

When I try to connect Postgres db on Heroku, I get the following error: psql: SSL error: certificate verify failed FATAL: no pg_hba.conf entry for host "73.15.187.47", user "first", database "my_db", SSL off I don't know what I am doing wrong. My…
Kartik
  • 2,541
  • 2
  • 37
  • 59
0
votes
1 answer

Heroku view files changed by client

I made a simple Node.js server and deployed it to Heroku that serves a dead simple HTML form that returns submitted value to fs.writeFile('./users.json',JSON.stringify(dataArr,null,4),(err)=>{ if(err){console.log(err);} console.log('file…
Glitch Fish
  • 41
  • 1
  • 13
0
votes
0 answers

How not to spawn a new dyno when used with heroku run bash command

So, I have an application deployed to heroku. In heroku i have a Procfile with the following content: web: env CONF_listener__port=$PORT bash "./startServer.sh" When the above command is executed then the shell scripts launches fine. This shell…
lambad
  • 1,046
  • 10
  • 21
0
votes
1 answer

How do you run a rails rake task from heroku CLI?

I have a task called extract. According to this blog post, all I'd need do to run the task manually (from the console) is: heroku run rake extract:start But I get the following error: NameError (undefined local variable or method `extract' for…
stevec
  • 41,291
  • 27
  • 223
  • 311
0
votes
1 answer

Are heroku apps anonymous?

If I have made 2 different heroku apps, can someone who randomly sees one also find the other and know that I made it? (They are not linking to each other of course) Thanks!
bGe
  • 25
  • 6
0
votes
1 answer

Heroku-cli freezing on my computer

Note: before you ask, no, it's not this: Heroku CLI Unresponsive; it hangs for MUCH longer than two minutes. I'm on a Mac, and after installing Heroku onto my computer (both by brew and directly from the site), for any Heroku command, so long as it…
Steven Choi
  • 669
  • 6
  • 15
0
votes
1 answer

Deployin asp.net core 2.0 to Heroku

Made an app using asp.net and followed the instructions outlined in this article as I am using asp.net core 2.0. I got docker working and Heroku cli installed and got through all the steps but on the last one when I try and push to heroku I get the…
Cody Moser
  • 27
  • 1
  • 1
  • 3
0
votes
1 answer

Error Pushing node app to heroku

I keep getting this error when i try pushing to heroku, i have no idea what it means. error: unable to rewind rpc post data - try increasing http.postBuffer error: fatal: WRPC failed; curl 56 SSL read: error:140943FC:SSL…
user7943190
0
votes
1 answer

Access Forbidden on heroku while deploying laravel app

I am trying to host a laravel application oh heroku. But i'm gettin the access forbidden message. I have created the Procfile and placed the following code web: vendor/bin/heroku-php-apache2 public/ I have also placed the following code in my…
Mutasim Fuad
  • 606
  • 2
  • 12
  • 31
0
votes
2 answers

Deploy Aurelia application on Heroku

I have an application using Node.js with Aurelia on the front-end, which I want to deploy on Heroku. To run the app locally, I need to execute following commands: 1. npm start 2. cd public > gulp watch After installing heroku-cli, tried…
software_writer
  • 3,941
  • 9
  • 38
  • 64
0
votes
0 answers

Parse-Server, email-verification bug?

I have been stuck longer than I would like, with a problem related to email verification when creating an account on Parse-Server (/Heroku). Though I made a few post on the issue, I was not lucky enough (or maybe did not formulate things clearly…
Michel
  • 10,303
  • 17
  • 82
  • 179
0
votes
0 answers

How do I run npm package commands on Heroku

I am using node-mongo-seeds in my express app to seed data. I deployed the app to Heroku and SSHed into the dyno, but running 'seed' command gives me command not found.
0
votes
1 answer

Heroku Worker Caching

I'm having trouble getting my worker process to update in Heroku. I have a worker dyno set in my Procfile that is connected to a Redis instance; I cannot see changes that I make to this file after deploying. I've tried: Resetting the dyno using…
Lauren
  • 743
  • 3
  • 12
  • 24