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

my app that i included in installed_apps is not included when i deploy my django to heroku

this is the error in my deployed site every time i open it Environment: Request Method: GET Request URL: http://skinproject.herokuapp.com/ Django Version: 1.9 Python Version: 2.7.13 Installed Applications: ['django.contrib.admin', …
helyeahhh
  • 1
  • 2
0
votes
1 answer

HEROKU \AppData\Local\heroku\update.lock.readers.lock is locked

i try to login with command HEROKU LOGIN on windows but it gives error like this autoupdate:: C:\Users\Lenovo PC\AppData\Local\heroku\update.lock.readers.lock is locked ! C:\Users\Lenovo PC\AppData\Local\heroku\update.lock.readers.lock is…
0
votes
1 answer

How to programatically create Hobby of type `Dyno` from Heroku API (Preferrably with Ruby)?

The following method returns a 422 HTTP status code when I attempt to create a Dyno with the heroku app api: client = PlatformAPI.connect_oauth(API_KEY) dyno_interface = PlatformAPI::Dyno.new(client) begin …
0
votes
1 answer

Heroku pipelines diff

I have a problem with the Heroku toolbelt, the pipelines are suddenly not working and prompt the following message : Fetching apps from pipeline... done Fetching release info for all apps... done ⬢ xxx-staging was not compared to ⬢ xxx-prod because…
Manu
  • 35
  • 1
  • 5
0
votes
1 answer

Spring Config Server Service with Heroku

I am exploring Heroku. I have a project which has 10 micro services. One of which is a configuration server which takes care of managing configuration for all services using git hub. I want to use Heroku for deploying these services but I am not…
0
votes
0 answers

Heroku deploy button fails when specifying standard-0 tier in Postgres add-on in app.json

I'm trying to create a Deploy to Heroku button and have created an app.json file in my GitHub repository. I want to include an add-on for Postgres and specify the standard-0 tier. This is what I've added in app.json: "addons": [ { "plan":…
jsstrn
  • 443
  • 1
  • 4
  • 13
0
votes
1 answer

Deploy to a specific application

I have an application on GitHub and I am working on making an interface to easily deploy branches of the application to separate Heroku applications for various reasons. Is it possible to specify a specific Heroku application you'd like to deploy a…
anonrose
  • 1,271
  • 3
  • 12
  • 19
0
votes
1 answer

[Error]: Failed to run command eventually with error: Error Domain=NSCocoaErrorDomain Code=3840 "JSON text did not start with array or object

I'm trying to set up my iOS app so I can use the parse database on heroku. In my app I wrote: func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { // Enable storing and…
alibabaei12
  • 161
  • 1
  • 2
  • 9
0
votes
1 answer

Node.js Heroku App application error. Trouble with logs

I'm new to heroku and when running my node.js app for the first time I get an application error. I have trouble discerning what exactly is the issue since the program runs fine locally. Here is the log. I can post the node.js code if need be, but…
Benjamin Chu
  • 151
  • 1
  • 3
  • 7
0
votes
2 answers

Add php5-imagick to Heroku php buildpack

Someone can show me how to customize the official buildpack heroku/php in order to add php5-imagick extension? Thanks
Oscar Fanelli
  • 3,337
  • 2
  • 28
  • 40
0
votes
1 answer

Using Highland in combination with node-client

I'm trying to use highland in combination with the heroku-client. But internally in the heroku client it uses this, even if I try to bind to bind this, the function gives and error message where there is a refrance to this I'm not able to get it to…
0
votes
0 answers

Deployment to heroku of Heaven fail

I'm now trying to optimize my team's work flow using slack with Heaven and hubot. But something strange happened while I deploy heaven to heroku by heroku deploy button.(https://github.com/atmos/heaven) I've filled in: GITHUB_TOKEN(permission:…
dennying
  • 35
  • 1
  • 6
0
votes
1 answer

How do you programmatically look up dyno information from heroku in node.js

My nodejs web application runs on a variable number/type of dynos. Is there a way to get the dynos setup in node ? Ex: dynos: { web: { standard-1x: 2, }, worker: { standard-2x: 4 } }
abel leroyer
  • 285
  • 2
  • 8
-1
votes
1 answer

(node:14808) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'role' of undefined

Go To Bottom For More Info warn file below const { MessageAttachment } = require("discord.js"); module.exports = { name: "warn", description: "Warn A Person", async execute(client,message,args,Discord){ if…
Bombo43453
  • 81
  • 3
-1
votes
1 answer

Heroku error: heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/"?

I'm trying to deploy very simple Nodejs API on Heroku, but I can't seem to figure out why it keeps on giving me this error. The app runs just fine on local server, even with heroku local web. My app is listening on app.listen( process.env.PORT ||…
passionateLearner
  • 722
  • 1
  • 7
  • 19
1 2 3
10
11