Questions tagged [heroku-api]

The platform API empowers developers to automate, extend and combine Heroku with other services

The platform API empowers developers to automate, extend and combine Heroku with other services. You can use the platform API to programmatically create apps, provision add-ons and perform other tasks that could previously only be accomplished with Heroku toolbelt or dashboard.

Platform API Reference :https://devcenter.heroku.com/articles/platform-api-reference

Platform website: https://devcenter.heroku.com/categories/platform-api

Discussion Forum: https://discussion.heroku.com/category/api

153 questions
0
votes
0 answers

Heroku Backend not Communicating with Frontend

I am relatively new with deploying web applications so please bear with me! I have successfully deployed a Flask API Backend on Heroku. I also have a frontend website and when I use localhost, the application communicates with the deployed API…
Samrat Sahoo
  • 565
  • 8
  • 17
0
votes
0 answers

"cannot parse Procfile" error when Heroku uploading

Pic of the files in the github repo: When I try uploading I get the error: Push failed: cannot parse Procfile. Please try pushing again. Anyone know why this may be happening?
0
votes
0 answers

How to access root on HerokuApp to use wget command

I would like to install this https://docs.bigbluebutton.org/2.2/install.html On my Heroku App. There is also shell script to make the installation very easy. https://github.com/bigbluebutton/bbb-install. I managed to downgrade my herokuapp stack to…
kayd yonis
  • 21
  • 4
0
votes
1 answer

If I drop my heroku table, can I later restore the database with a Heroku backup?

I'm having some issue with my migrations in Heroku. I've tried several things but none seem to work. I feel like I should just drop the table that's causing the issue, which will delete all the data in production. If I drop the table, and re-created…
0
votes
2 answers

How to stop a Heroku dyno using the Heroku API so it doesn't restart

How can a fully stop a Heroku dyno using the Heroku API so it doesn't restart? I have Heroku set up to run a Python script that always loops and never exits to check sensors. This main.py script is run as a Dyno worker via my Procfile. Right now, it…
Ryan
  • 10,798
  • 11
  • 46
  • 60
0
votes
1 answer

How to set up environment variables on Heroku?

When I deploy Node.js API on Heroku it gives me a wrong response . res.json({"user":user,"auth-token":token}); localhost:3000/auth/login { "user": { "email": "name1@gmail.com", "username": "name1", "fullname": "fullname…
Nikhil kumar
  • 191
  • 1
  • 3
  • 13
0
votes
1 answer

raise ImproperlyConfigured("settings.DATABASES is improperly configured. " django.core.exceptions.ImproperlyConfigured: settings.DATABASES

I want to create a new app using 'python manage.py startapp' in my files but I am getting this error. raise ImproperlyConfigured("settings.DATABASES is improperly configured. " django.core.exceptions.ImproperlyConfigured: settings.DATABASES is…
0
votes
0 answers

How to connect deployed Heroku app to Django server

I have deployed heroku app that is based on Django, and React but whenever i want to login into the deployed app i'm getting an error POST http://localhost:8000/api/auth/jwt/create/ net::ERR_CONNECTION_REFUSED Initially i had my react login api as…
Shadow Walker
  • 979
  • 5
  • 27
  • 51
0
votes
2 answers

Failed to find attribute 'application' in 'django'

While running heroku logs --tail I see Failed to find attribute 'application' in 'django' Why am I getting this error? My deployment was successful when I pushed my code to heroku master and it was deployed but I am getting this error. I added…
Surya_1897
  • 97
  • 9
0
votes
0 answers

Heroku - Java service continuously crashing because of dynos overload

We need to update our database in Salesforce Platform by taking data every minute from Bloomberg Platform. For this solution, we have a Java "bridge" service in heroku. The problem that we have is that our heroku app is continuously crashing and we…
0
votes
1 answer

How to deploy openbazaar-go to heroku

How can I deploy openbazaar-go to heroku? I got the go project go get github.com/OpenBazaar/openbazaar-go Created heroku git heroku create Push git changes git push heroku master But getting error remote: -----> Checking Godeps/Godeps.json…
Sergey
  • 418
  • 1
  • 7
  • 21
0
votes
1 answer

I use Quick.db in my Discord bot. Every time I deploy an update the db does not save, why is this and how do I fix it?

So... I use quick.db for my Discord bot's Economy System. It's all perfectly set up however every time I deploy an another update for my Discord bot from Github, the db does not save, and everyone's stats across everyone's server reset back to 0,…
0
votes
0 answers

Ruby update stack from Cedar14 to heroku18

I recently update my ruby heroku app from stack cedar14 to heroku18 and I'm facing issue that I can't identify. I'm beginner in ruby's app and I'm totaly lost. My home page display filter and I don't succeed to display them since I changed the stack…
0
votes
1 answer

Parse.Cloud.beforeSave not able to set a new field on an object being created

I have a little problem in a Parse.Cloud.beforeSave function on Parse-Server. This line is puzzling me: request.object.set("dbCount", 0); It has been working before. But since I made a server update, to be on the heroku-18 stack, as requested by…
Michel
  • 10,303
  • 17
  • 82
  • 179
0
votes
1 answer

Push notifications, from Parse-Server cloud code

I am trying to make Push notifications work, on Parse-Server (Heroku), with an iOS app. At this point I can receive a notification in my iOS app, by running the command: curl -X POST \ -H "X-Parse-Application-Id: 12345678ABCDEFstuvwxyz" \ -H…
Michel
  • 10,303
  • 17
  • 82
  • 179