heroku

Is it possible to share public code through heroku like I can with Github?

On Github, I can send a page link with a file of code. Does Heroku have the same functionality, or do I have to have them clone the project and added as a collaborator to do that? ...

How do I get Heroku to work on Ubuntu 10.10 (using VirtualBox on Windows machine)?

I'm a newbie following the RailsTutorial.org program and have installed/setup rvm, ruby 1.9.2,rails, curl, git and created my first app and pushed it to github (so the SSH key is fine). The next step is deploying to Heroku, which is killing me: gem install Heroku works fine but I get this error after "heroku keys:add" or "heroku crea...

Removing duplicate db migrations from git repository

I'm trying to deploy a rails app to Heroku and I'm running into some basic git problems. I'm new to this all -- rails, git, heroku -- so I'm afraid I'm getting lost on what's probably a fairly basic concept. I've pushed the app to Heroku, but when I'm migrating the db ($ heroku rake db:migrate), I keep getting the following error: rake...

What are the best practices in monitoring DelayedJob?

What is the best way to get alerts of some kind (email, HTTP callback, etc) about failed jobs in DelayedJob? I'm running in Heroku, so keeping the workers alive (god, monit, etc) is taken care of. NewRelic's error tracking functionality apparently doesn't register fatal errors in Delayed::PerformableMethod, but I do get performance met...

How do I generate files and then zip/compress with Heroku?

I sort of want to do the reverse of this. Instead of unzipping and adding the collection files to S3 I want to On user's request: generate a bunch of xml files zip the xml files with some images (pre-existing images hosted on s3) download zip Does anybody know agood way of doing this? I think I could manage this no problem on a ...

How can I write to a log-file easily when deployed on Heroku?

While running on Heroku, I would like to be able to put key information via, say, puts or other such statement, to write to a log file. But Heroku doesn't allow writing to a file, so what is a way to do this easily? ...

Deploy Gollum wiki to Heroku

Gollum is "A simple, Git-powered wiki with a sweet API and local frontend." It's hosted on GitHub: http://github.com/github/gollum It seems to be a simple Sinatra app, and as such, it seems like it should be easy to deploy to Heroku. I can't seem to get it to work. Mostly because I know next to nothing about Rake and config.ru files...

Cannot push git to remote repository: (SSH error)

When I attempt to push to my heroku.com remote git repository, i get this message: ssh: connect to host heroku.com port 22: Connection refused I can easily work with my repository on github with the same ssh key. Entering: $ssh [email protected] #outputs: success message $ssh [email protected] #outputs: ssh: connect to host heroku.c...

heroku and vendor/plugins: does that work?

I have a RoR app 2.3.8 based on refinerycms. I had to add search functionality. For search, there is a gem for refinerycms, which is unfortunately for rails3. In order to use that, I had to git clone the plugin git checkout the specific version The plugin is in vendor/plugins. then I test everything locally, the search runs fine! If...

Trying to upgrade from Rails 2.3.5 to 3.0.1 on Heroku, but Heroku still thinks I'm using 2.3.5

I was previously using Ruby 1.8.7 & Rails 2.3.5 on Heroku. I upgraded my development environment to Ruby 1.9.2 and Rails 3.0.1 using the instructions this railscast. RVM is used, so the system versions of Ruby and Rails are still 1.8.7 & Rails 2.3.5 respectively, but I have an RVM environment with 1.9.2 and 3.0.1, which I now use. I'm...

Rails 3: SMTP Settings for Google Apps / Heroku

Here are my smtp settings for Google Apps in setup_mail.rb. :address => "smtp.gmail.com", :port => 587, :domain => 'mysite.co', :user_name => '[email protected]', :password => 'password', :authentication => 'plain', ...

App crashed because of syntax error in an helper utf-8 encoded

Dear all. I'm using heroku to deploy my app (rails 3). Ok so I do the usual, which is a git commit, a git push heroku master => deployment is ok, gems are installed, etc... When running my app in the web browser, I get an heroku error : app crashed. In the ouput of heroku logs, this got my attention : ==> dyno-2625316.log (crash) <== ...

Is there such a thing for Django as there is Heroku for Ruby on Rails

Is there a cloud based development for Django, such as there is cloud based development and hosting environment for Ruby / heroku ...