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.
0
votes
1answer
32 views
mongodb , node.js, combbo, deploying on heroku, mongod
I am new to mongodb and node.js. I have a simple node.js app that in order to run I have to run the command
mongod
to make sure mongodb is running.
locally this works fine.
now I am moving to ...
0
votes
1answer
11 views
Heroku Cannot Require file
My Sinatra/Rack application has the following structure
-app
routes.rb
--pages
courses_page.rb
this is my config.ru
require 'rubygems'
require 'bundler/setup'
Bundler.require
require ...
0
votes
0answers
19 views
Cannot deploy play-tutorial to Heroku
I am trying to do exactly what tutorial said but I keep having this error.
The tutorial was the very first to-do. (So the source is exactly same than in here)
[info] [SUCCESSFUL ] ...
1
vote
1answer
53 views
Copy lines to os x clipboard from vim on remote console
I'm using heroku, and I've logged gotten access to bash using heroku run bash. I found out it was possible to install vim on heroku with this shell script:
#!/usr/bin/env bash
curl ...
0
votes
1answer
26 views
Deploy Rails app anywhere
How can I deploy my Rails apps anywhere in the world (including my shared hosting http://www.moxo.cz/)?
I tried Heroku, but I had problem with moving my dev db.
Then I found mod_rails and it seems I ...
0
votes
1answer
45 views
Why doesn't Heroku like strftime? [closed]
It seems Heroku/PostgreSQL doesn't support strftime. So, if I want to convert something like:
@event.date_start.strftime("%B #{@event.date_start.day.ordinalize}")
What are the options without using ...
0
votes
1answer
19 views
Rails Heroku database missing data
I'm new to Rails and Heroku.
I don't partly understand system of databases (testing, production, development).
I created two Rails apps. First with Rails' default sqlite db and second with ...
0
votes
1answer
28 views
How do I do a SQLite to PostgreSQL migration?
I have a problem with migrating my SQLite3 database to PostgreSQL. How and what do I need to do?
I am searching the internet, but find only migrations from MySQL to PostgreSQL.
Can anyone help me?
...
0
votes
0answers
7 views
Using Heroku with cyrilliс user folder in Windows
This is quite specific problem: developer's machine with Win 7 Ulttimate has cyrillic user folder name, which cannot be changed due to the plenty of another programs rely on this path.
Need to deploy ...
-1
votes
0answers
34 views
find out local postgresql host [closed]
I start the server with:
$ pg_ctl -D /usr/local/var/postgres -l logfile start
I need it to create a database url like:
postgres://username:password@host/database
How do I figure out what the ...
2
votes
1answer
42 views
Failing to push to heroku
I am attempting to push my rails 3.2.12 app to heroku, which is configured with a postgres database. The first time I ran git push heroku master I received the below error.
Running: rake ...
0
votes
1answer
28 views
Custom root domain on Heroku
I have a domain, example.com, that I want to use for my rails-app that resides at example.herokuapp.com and I'm pretty confused how to go about to do this.
Heroku says "Zone apex domains (aka ...
1
vote
2answers
27 views
git push and git push heroku master in one step
Is there a way to execute git push and git push heroku master all in one line on the command prompt?
It is cumbersome and time-consuming to go git push, wait, wait, then git push heroku master
0
votes
0answers
13 views
heroku Could not generate key in Windows XP
I am trying to program my first facebook app using heroku, but I can't get started. I am following the instructions heroku provides (https://devcenter.heroku.com/articles/facebook), but I cannot ...
0
votes
1answer
50 views
Heroku error “We're sorry, but something went wrong”
I have a problem with publish my ROR project with Heroku.com service...
I have done all steps from this tutrial
but when I am running comand "heroku open" I have an error "We're sorry, but something ...
0
votes
1answer
20 views
Heroku Deploy Images Reset
I have an rails app deployed to Heroku. It has image uploads. After deployed to heroku again, i am unable to see old images that are uploaded.
Is heroku reset images folder when app is re-deployed? ...
0
votes
0answers
13 views
How can I remove Heroku from my facebook app?
I have a fb app that from the beginning didnt have Heroku connected to the app. I wanted to try move my app to Heroku to get SSL and activated Heroku on fb app. But then later on I changed my mind and ...
-2
votes
2answers
40 views
Troubles with Heroku cloud hosting [duplicate]
I have a problem with deploying my Ruby on Rails project into heroku cloud hosting - heroku cloud hosting
When I am pushing my code through Git bush I have a problem with installing sqlite3... but ...
1
vote
0answers
30 views
R with png() support
I am building R from source on Heroku via Vulcan, and trying to debug lack of png() support. I think the issue has to do with discovery of libXmu or equivalent, based on the below output. How do I ...
0
votes
0answers
23 views
When pushing application to heroku, get “Error: Cannot find symbol”
Whenever I push to heroku, during the build I get the following error:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (default-compile) on project ...
1
vote
0answers
23 views
rails on heroku: external mysql attempts connection to amazon when other url specified
Getting the "we're sorry, but something's wrong" error, trying to configure external mysql to work with rails app...already using proximo and app has been whitelisted
$ heroku config: yields
...
0
votes
1answer
24 views
Socket.io keeps timing out on Heroku
This is the following code of my app.js:
var port = process.env.PORT || 3000;
var app = require('express').createServer();
var io = require('socket.io').listen(app);
app.listen(port);
...
1
vote
2answers
41 views
Can't push on heroku
I’ve just cloned one of my repositories on github, I've made some changes and I would like to send it on the heroku application. But when I try to run git push heroku master, I get :
fatal: 'heroku' ...
0
votes
1answer
20 views
could not connect to server: Connection refused
I am using rails 3.2.13. I am getting the error below when pushing to Heroku.
My app is working fine, I just wanted to get rid of this message when trying to update my heroku app.
Any fix for this? ...
0
votes
0answers
4 views
heroku rails expire cache based on regexp
Let's say I have a story-telling site, where users can set parameters and get stories, e.g.
mysite.com/story1?name=Frodo&race=hobbit returns Brave hobbit Frodo went to Mordor.,
...
1
vote
1answer
30 views
Rails app on Heroku - Issue with CORS
I have a Rails app on Heroku with this configuration:
module MyAppApi
class Application < Rails::Application
# other configs
config.middleware.use Rack::Cors do
allow do
...
0
votes
0answers
15 views
Ruby on Rails Template::Error Heroku logs
I get this error when I run heroku logs:
ActionView::Template::Error (Missing partial Partial/menu with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:* ...
0
votes
0answers
13 views
Subdomain routing with devise not working on heroku
I have defined a few types of users using devise (members, company_users, etc) and I'd like to use different subdomains for the login pages of each type of user.
I've referred to this railscast in ...
-3
votes
2answers
54 views
Application Error An error occurred in the application and your page could not be served. Please try again in a few moments [closed]
I try to deploy my second application to heroku.
But I have this error and I'm not able to solve it. Some one can help me ?
Below the result of console output heroku logs:
...
-2
votes
0answers
20 views
Deploy an existing Rails app to Heroku [closed]
I'm having problem deploying an existing rails app to heroku. When I open the app I just get "We're sorry, but something went wrong". Been trying a lot of different tutorials, but always get the same ...
0
votes
1answer
12 views
Heroku and gems only for production environment
I have an application that must be run in three different environments, called dev, beta and prod.
I created three different applications on heroku, so all the environments can be run at the same ...
0
votes
1answer
13 views
dalli on heroku not caching
I want to enable action caching in my rails app on heroku.
In development.rb I set:
config.action_controller.perform_caching = true
and see in logs
Started GET "..." for 127.0.0.1 at 2013-05-17 ...
0
votes
0answers
6 views
Heroku Toolbelt Gem::LoadError
I had some problems with heroku so I unistalled the toolbelt. I've also read that I should uninstall the heroku gem so I did that. Then I installed the toolbelt again. Now I just get error:
...
0
votes
1answer
21 views
How do i fix “No module named storages.backends.s3boto” error with heroku?
I am working with Amazon S3 to serve static files and also using heroku as a Paas. I following this tutorial. I did a,
python manage.py collectstatic
locally and it worked just fine but when i do ...
-1
votes
1answer
16 views
Unable to redirect to a naked domain from Heroku using Hostgator
I'm trying to use my Hostgator domain with my Heroku app, everything works except the naked domain.
Redirect didn't work for me and they don't provide ALIAS or ANAME?
Any thoughts?
0
votes
1answer
21 views
Why does my Play/Heroku/Postgres deployment fail with a password error?
I'm getting started with the Play Framework, and have a toy app that runs locally using an H2 in-memory database. My application.conf file looks like this:
db.default.driver=org.h2.Driver
...
0
votes
1answer
31 views
Why do I keep getting the Heroku 500 error?
I am new to rails development and I keep getting an error from heroku
Application.js:
// This is a manifest file that'll be compiled into application.js, which will include all the files
// listed ...
0
votes
1answer
26 views
Heroku Mandrill Deployment Setup
Working on a Python/Django app, deploying with Heroku and sending emails with Mandrill. I've been able to send emails using my local configuration, but when I deploy to Heroku, the mail doesn't send ...
1
vote
0answers
12 views
Jetty-runner.jar set request timeout
Is there a parameter setting that I can pass when running jetty-runner.jar to configure the request timeout?
Ex:
java $JAVA_OPTS -jar server/jetty-runner.jar --port $PORT target/*.war
I'm trying ...
0
votes
1answer
21 views
How to unzip files in a Heroko Buildpack
I'm writing a custom Heroku buildpack, as part of the compile script I've downloaded a .zip file (from a language vendor), but how do I unzip it?
unzip is not a recognised command.
gunzip exists but ...
0
votes
1answer
22 views
Why do I keep getting an error when migrating database? Heroku
I am working on a rails app and I keep getting an error saying,
AddIndexToUsersEmail: migrating ===========================================
-- add_index(:users, :email, {:unique=>true})
rake ...
1
vote
1answer
19 views
putty disconnected error, openssh conflict with putty?
I have been having issues with being able push my changes to my heroku app. I was able to about 1 week ago but not I cannot.
I cant think of anything I did to cause this (possibly installed the ...
0
votes
1answer
32 views
Configuring SSL for an App Heroku HTTPS
Hello I am currently going through the tutorial below to add ssl to my heroku app
https://gist.github.com/shripadk/552554
so for today, I bought a domain name, set the cname to point to my heroku ...
3
votes
0answers
39 views
What's the best way to invoke clojure worker threads on Heroku?
I'm currently just running the task through the scheduler. It runs for several minutes. I have no reason to think it is being shut down for running too long, but I'm wondering if it should be a ...
0
votes
2answers
57 views
Including custom fonts in .fonts folder in heroku, seems not recognizing them
Heroku support told me that in order to use custom fonts in my web app (not installed in the system, you can see the installed ones with fc-list in a bash console) I had to deploy a .fonts folder with ...
0
votes
0answers
22 views
Grails app using mongo not starting on heroku
I am trying to deploy my Grails app on heroku but the deployments keep failing whilst wiring up my mongo beans.
The deployment method I am using is heroku deploy:war.
I have the MONGOLAB_URI set ...
0
votes
1answer
14 views
The right way to redirect from herokuapp.com to custom domain with htaccess
I'm dealing with a noob problem right now. I want to do a permanent redirection, with .htaccess, from a Heroku app domain to my custom domain.
I'm trying with this:
redirect 301 ...
0
votes
1answer
100 views
Impossible to deploy app in heroku - it searches ruby 2.0.0p195
I've deploying our app with rails 3.2.13 and ruby 2.0.0p0 without problems in heroku. However, today suddenly I couldn't deploy it. This is the log, it seems the only difference in our project is the ...
0
votes
0answers
19 views
Rails - Roo “file does not exist” error when using Delayed Job
I'm using the Roo gem to import Excel files, CSV files, etc.
The code works great a) on my local box with or without Delayed Job, and b) on Heroku without Delayed Job. Unfortunately when running on ...
0
votes
1answer
26 views
SSL Configuration Unable to read server.crt file
I am trying to go through this tutorial here
Creating a Self Signed SSL Certificate
https://devcenter.heroku.com/articles/ssl-certificate-self
I generated the csr, and the key and generated the ...

