Skip to main content
Filter by
Sorted by
Tagged with
1 vote
2 answers
337 views

as the title states i have created a nodejs project, this is my first "clean deploy" where i just import from github and then add the env and buildpack for nodejs then deploy from the latest ...
David Verduzco's user avatar
1 vote
2 answers
1k views

Pretty much the title. When trying to spin up an eco dyno for my app in the Resources section of the Dashboard, I get the following error: Item could not be updated: Subscribe to Eco to scale your ...
Yajas Malhotra's user avatar
1 vote
1 answer
2k views

What exactly is --gc_interval, and what are the best practices for setting this value in production if the goal is to distinguish clearly between memory leaks and lazy garbage collection? Heroku ...
Doron Roberts-Kedes's user avatar
1 vote
1 answer
147 views

I run a Github Action that deploys my app to Heroku with two relevant steps. Build Step: push to Heroku, build (including heroku/nodejs buildpack), create JS sourcemaps (among other things). Sentry ...
mikey555's user avatar
  • 464
1 vote
1 answer
1k views

My logs just started showing these messages constantly: [ROSE] [13-1] sql_error_code = 00000 time_ms = "2022-05-10 20:34:02.227 UTC" pid="66624" proc_start_time="2022-05-10 ...
bbrodsky's user avatar
  • 792
2 votes
1 answer
174 views

I have express.js REST API server on Heroku. I am trying to debug an error remotely. But, I receive below exception. The steps I tried to debug remote server are mentioned after this exception section....
Kevv Keka's user avatar
  • 324
0 votes
1 answer
2k views

The following setup does not work: Setting a config var either via the dashboard or via heroku config:set TESTVAR=123 using heroku config shows the variable is set. But then logging into the ...
Denis's user avatar
  • 185
2 votes
1 answer
660 views

I am using a private package from GitHub. When attempting to deploy, Heroku ignores my .npmrc file configs. Locally, my environment file looks like: NPM_CONFIG_GITHUB_TOKEN=[token] Then, my .npmrc ...
Evitcani's user avatar
0 votes
1 answer
454 views

I have a NodeJs app hosted on Heroku. As part of Authentication, I want to open a browser window when user accesses the /login route. I am using Node's "open" library for this, and passing ...
Sachin Upmanyu's user avatar
0 votes
1 answer
111 views

I'm getting error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54 when I try to push to Heroku , this is not a first push I have this app deployed in Heroku already, but all of a ...
mahendra's user avatar
  • 203
0 votes
1 answer
974 views

I run an nodejs express server on Heroku. I define a Procfile in my application root which contains: web:node --optimize_for_size --max_old_space_size=460 --gc_interval=100 server.js However when I ...
Jonas Pauthier's user avatar
2 votes
0 answers
983 views

I'm trying to connect to a Postgres database from my Heroku node app, which works when running locally, both through node and by running the heroku local web command, but when running it on Heroku, it ...
enzoborgfrantz's user avatar
0 votes
1 answer
1k views

I have an app on Heroku. According to the Heroku App deploy guide I followed the below steps to modify the master. Steps to make the push on Heroku $ git add . $ git commit -am "make it better" $ ...
Kunal Fule's user avatar
2 votes
2 answers
2k views

I have a nodejs application. I am trying to push it to heroku and execute it in heroku. While deplying via heroku CLI, I am facing an issue. Please help. Thanks. I am aware that this can be solved in ...
vardhan's user avatar
  • 53
0 votes
0 answers
33 views

I have a simple app, that stores some files in a node Heroku app. I didn't know it, but every day the Heroku server is restarted and just the GitHub files survive. My ignored files not. I know the ...
ValRob's user avatar
  • 2,752
0 votes
0 answers
227 views

I have a node application that executes a jar file as follows: command(params, cb) { var cmd = '/usr/bin/java -jar JavaAPI.jar ' + this.node_id + " " + this.node_address; for (var i = 0; i &...
TShrestha's user avatar
  • 1,338
0 votes
1 answer
526 views

I have some very simple Node.js code that I want to emit as chunked responses. The code is: const WAIT = 500; const records = [...]; function getList(req, res, url) { var list = records.slice()....
Matthew Phillips's user avatar
5 votes
0 answers
6k views

I am using navigator's clipboard object to copy text into the clipboard using vuejs. It works fine till it is hosted locally, hosting using heroku returns navigator.clipboard as undefined. Does anyone ...
rkpattnaik780's user avatar
0 votes
1 answer
98 views

When I deploy my node app to the Heroku, after it's done installing its dependancies, it does an "npm run postinstall" as per the docs, however the NODE_ENV variable isn't set, so my app is being ...
PrimalYeti's user avatar
1 vote
1 answer
984 views

I'm getting an error when my dyno attempts to start nginx, on both heroku-16 and heroku-18: bin/start-nginx: No such file or directory I used the heroku-buildpack-multi buildpack. .buildpacks file: ...
Behind The Math's user avatar
1 vote
2 answers
396 views

I'm getting Heroku warnings about my slug size being too big: -----> Compressing... Done: 304.9M -----> Launching... ! Warning: Your slug size exceeds our soft limit (304 MB) which may ...
dstj's user avatar
  • 5,270