Questions tagged [heroku]

Heroku (pronounced her-OH-koo) is a cloud platform for Ruby, Node.js, Clojure, Python, PHP and JVM-based (Java, Scala, etc.) applications that features a Git-based deployment strategy, a large number of services offered as add-ons, and a full API.

Heroku (pronounced her-OH-koo) is a cloud platform for Ruby, Node.js, Clojure, Python, PHP and JVM-based (Java, Scala, etc.) applications. It features, among other things:

Git-based deployment strategy

Applications on Heroku are managed with Git. Simply pushing your codebase to Heroku is all it takes to deploy your application.

Add-Ons

Heroku offers a growing number of add-ons via its add-on provider program. Additional services, such as error tracking and reporting, incoming and outgoing email services, hosted no-SQL databases and more is available via a few clicks or commands on the prompt.

Fully Managed, Multi-Tenant Architecture

Heroku's architecture is designed to keep your app running smoothly with minimal interaction on your part. The Heroku site has a detailed explanation of its architecture.

Full API

All of Heroku's functionality can be accessed from the command line (via the Heroku gem), including managing SSH keys, increasing or decreasing the number of dynos, managing SSL certificates, adding or removing add-ons, and more.

210 questions
3
votes
0 answers

Heroku CI: Run tests only on pull requests

I've used Travis for some time, and are now experimenting with Heroku CI for a one of our Rails projects. It works well, but it automatically runs the tests for all pushes to the GitHub repo. Ideally, I'd like to run tests only when a pull request…
port5432
  • 173
2
votes
3 answers

Heroku command return "App not found"

I am new to Heroku. I tried to use the command heroku to get some inforamtion of my apps. I can use heroku list to get the list. But when I use heroku info, it returns App not found What's the problem? How can I fix this error? Thank you in…
2
votes
0 answers

Web server to run an executable binary using Heroku

I'd like to create a web server which serves REST APIs. Most of the functionality on the server side already exists in an executable binary or some shell script. So instead of rewriting this functionality in the API, the REST API is just a thin…
zli
  • 121
1
vote
1 answer

Running a private lookup server on a single web dyno that is accessible (v. low latency) to all other dyno's in app?

Is it possible to have a web dyno that runs simple web server listening on a chosen port, that's not accessible from the outside world, but is addressable from all other dyno's (web & worker) in the app? Basically, I have a web app with several web…
1
vote
1 answer

How to have shared DNS setup for custom domain with Heroku?

I asked a question on why my custom domain with Heroku was not working here: Why can’t my custom domain on Heroku be resolved? However, the background of this question was, that I wanted to have a CNAME entry for www.example.com pointing to heroku,…
poseid
  • 559
1
vote
1 answer

ASIHttpRequest duplicate request on heroku

I have an iphone app using ASIHttpRequest. The server code is on heroku in node.js From time to time, a single request is sent from the iphone (only one trace) app but it is received twice on herokuapp (I can see twice the same request in the heroku…
Luc
  • 518
  • 3
  • 5
  • 21
1
vote
0 answers

How much traffic can a heroku page handle?

I have recently deployed my rails website with Heroku. I am currently on the paid Hobby Dyno. My web page consits of a log in function, 13 five minute long sound files, a few images and a bunch of zoom links. I am expecting around 200 users at any…
Linus
  • 11
0
votes
1 answer

Heroku app.json configuration not working for review app

Below is my app.json: { "environments": { "review": { "addons": [ "heroku-postgresql:in-dyno" ], "scripts": { "postdeploy": "php artisan migrate --seed" } } } } In my…
eithed
  • 103
0
votes
0 answers

Control heroku restarts

I have an app (online board game) on heroku free hosting. It takes 1 web dyno (NodeJS server) and so far it works fine except one thing: Automatic Dyno Restarts It doesn't seem to respect 24h rule (yesterday I deployed new patch at 21:00, today it…
Fen1kz
  • 101
0
votes
1 answer

Should I Change heroku app location from US to regional? If yes how to do it?

I have a basic application which was created with heroku but at the time of creation there was no mention about regions. As a result my application region is US instead of India. Are there any problems by being in a region that I don't belong to?…
Saurav Seth
  • 101
  • 1
0
votes
0 answers

Heroku cli give an error on login

I'am install heroku cli and it show me error on login fork/exec /home/evgeny/.local/share/heroku/cli/lib/node: no such file or directory Is there any way to fix it? OS: Fedora 25
Evgeniy
  • 113
0
votes
1 answer

Why can’t my custom domain on Heroku be resolved?

I configured a custom domain for a small site on Heroku on Friday. It worked then, but now, it's broken. The host is nedgros.de. nedgros.herokuapp.com has address 23.21.239.236. Is does not resolve to the right application. How can I configure the…
poseid
  • 559
-2
votes
1 answer

How to get murmur (mumble server) on heroku?

I currently have a murmur server running on a separate host that I am hoping to get rid of, I was curious if anyone knew of murmur running on Heroku or something similar like dotcloud? If it is possible, how exactly do I get it running?