Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
32 views

We've an up and running Spring Boot java project working in Heroku using web dynos. Business requirement is to include background processes to sync some master data grabbed from external system by ...
Aitor Alonso's user avatar
0 votes
1 answer
170 views

I have written this python web-scrapper script and have deployed it on Heroku. It is continuous running script and does web scrapping after each minute of sleeping . The problem is that it works fine ...
Navi_Here's user avatar
0 votes
1 answer
99 views

I have a NodeJS application running on Heroku that uses server sent events (SSE). In the Heroku documentation I saw: The autoscaling algorithm does not include WebSocket traffic in its calculations. I ...
jlc229's user avatar
  • 1
0 votes
1 answer
60 views

I have created a Flask-CRUD web application. My app build is successful but is not deployed when I check the logs I get `H14 No web processes running error` I checked the dyno status through command ...
Manvi Jha's user avatar
3 votes
2 answers
923 views

Is there a way to see which version of node your app on heroku is using? I saw that you can specify the version of node "engines": { "node": "14.x" }, I have not ...
Dashiell Rose Bark-Huss's user avatar
1 vote
0 answers
106 views

I'm trying to deploy django project to Heroku using docker image. My Procfile contains command: web: gunicoron myProject.wsgi But when I push and release to heroku - somewhy dyno process command ...
Kereell's user avatar
  • 69
0 votes
1 answer
611 views

This is continuation of my previous question: What is the propper way to debug gunicorn? Currently I am having error code=H14 desc="No web processes running" wihch suggests that there are no ...
Heikki's user avatar
  • 373
0 votes
1 answer
37 views

I am new to Heroku, created an app and deployed on heroku free account. And I want use endpoint of that app as publicly accessible endpoint. In heroku documentation it is mentioned heroku API can be ...
Ujwala Mane's user avatar
0 votes
0 answers
51 views

New accounts receive 550 free dyno hours and one can verify their identity with a credit card for an additional 450 hours Is it one time? Or will I get 1000 hours every following month?
Curious Learner's user avatar
0 votes
1 answer
105 views

Might be a noob question but I'm new to hosting code online. For my first project I've created a web scraper that logs into a website and updates a number every hour. Indexing up by one. Initially I ...
Allons-yGunners's user avatar
1 vote
0 answers
219 views

I have a dash plotly python jupyter notebook app (music) that takes 5 rows as a sample from a bigger dataframe using df_sample= df.sample(5). It has a quiz with inputs to compare the response of the ...
Pablo Mandelbaum's user avatar
6 votes
2 answers
8k views

What should go in my Procfile for a Django application on Heroku? I tried: web: python appname.py because I found an example like that for python apps. Further searching didn't make things any ...
VaultDweller's user avatar
7 votes
3 answers
420 views

A few hours ago we starting seeing a bunch of H10 errors in our logs and on our Heroku dashboard. Heroku says that H10 errors are due to web dyno crashes. Read more here. The strange part is that our ...
Macgill4444's user avatar
2 votes
0 answers
71 views

I have a memory leak and would like to apply a temporary patch while I debug it. I want to restart the dyno whenever a specific request from a client comes in. I'm assuming appName below is just this: ...
nickcoding2's user avatar
2 votes
1 answer
1k views

So I'm web scraping Google and am pretty sure it's blocking my requests based on the IP address. I've deployed my app to Heroku (which has dynamic IP addresses when the dynos restart) and I've noticed ...
nickcoding2's user avatar
0 votes
1 answer
120 views

I run the following command twice to start my two one-off dynos heroku run:detached python main.py and then stop it using heroku ps:stop <dyno-name> however, I wish to stop all my dynos ...
Lovesh Dongre's user avatar
0 votes
1 answer
256 views

Whenever a request times out to a dyno, it's automatically retried. Looks like it's managed by the dyno according to this article https://devcenter.heroku.com/articles/http-routing. How can I set/...
markw's user avatar
  • 3
0 votes
0 answers
447 views

I am new to all things Heroku/Django so apologies if this question is elementary. I've developed my first minor app using Django and have just deployed it into Heroku. A major part of the app is that ...
Hektar's user avatar
  • 71
1 vote
1 answer
191 views

I've verified my account on Heroku so I have my 1000 free Dynos hours and only one project, and I'm only using the basic dynos. With that in mind, I thought it would be good to ping the server once ...
nickcoding's user avatar
0 votes
0 answers
51 views

I am building an API on heroku using python and flask I am currently sending a post request and then the worker takes the parameters and starts processing and return the json response when it finishes ...
nader sayed's user avatar
2 votes
0 answers
575 views

Is there a way to prevent Heroku "Relocating dyno to a new server"? Since Relocating does not make a copy of the code, my scheduler stops from working. It's annoying ! Thanks
Lila 's user avatar
  • 83
0 votes
1 answer
287 views

I have 3 application.yml one for dev and one for prod application.yml (default set to dev) application-dev . yml application-prod . yml When running this command - Dspring.profiles.active=prod it will ...
Ruitjes's user avatar
  • 29
0 votes
0 answers
181 views

I've just deployed a new project to Heroku using Docker. Unfortunately, my dyno is in a reboot cycle and hasn't come online yet. It continuously crashes with the following logs: 2021-01-07T09:49:55....
Ari Seyhun's user avatar
  • 12.8k
0 votes
1 answer
316 views

I have a worker dyno that I use to run my discord bot. It works normally every day and I have been using it for a long time but suddenly today is just stopped working even though it shows that it ...
Shrey Patel's user avatar
0 votes
0 answers
54 views

I've used Heroku to host my Discord bot for a while now with no problems. I connected it with Github to autodeploy after every commit. However, today I made a change in one of the bot's files, a ...
JoeMama's user avatar