Re: Custom error pages, we *really* need them

2010-09-15 Thread David Balatero
I've suggested in the past having a separate branch in your repo called errorpages or something, which has a few static HTML pages. Push that branch to Heroku, and it can use those files to serve errors. On Wed, Sep 15, 2010 at 7:58 AM, Daniel Spangenberg daniel.spangenb...@googlemail.com wrote:

Re: Heroku Console and Gems

2010-08-27 Thread David Balatero
Not necessarily. .gems is deprecated IIRC, and only tells Heroku what to install. Your Rails app has to define gems in config/environment.rb w/ config.gem directives. Alternatively, switch to Bundler + Gemfile, and manage gems in one place. On Fri, Aug 27, 2010 at 1:35 PM, Scott LaBounty

Re: Heroku Console and Gems

2010-08-27 Thread David Balatero
at 1:37 PM, David Balatero dbalat...@gmail.comwrote: Not necessarily. .gems is deprecated IIRC, and only tells Heroku what to install. Your Rails app has to define gems in config/environment.rb w/ config.gem directives. Alternatively, switch to Bundler + Gemfile, and manage gems in one place

Re: Subdomain set up?

2010-08-19 Thread David Balatero
You need to have the custom domain add-on with your desired domain. remix.tricil.net needs to be a CNAME pointing to proxy.heroku.com That's it! David On Aug 18, 2010, at 2:55 PM, tricil tri...@gmail.com wrote: Ok, so I have a site that's my main website: http://tricil.net this has to stay

Re: how to use a command-line utility?

2010-08-11 Thread David Balatero
On Wed, Aug 11, 2010 at 3:43 PM, Richard Conroy richard.con...@gmail.comwrote: On Mon, Aug 9, 2010 at 6:41 PM, Jacob Hodes jho...@gmail.com wrote: Hi, I'm developing a Rails app that makes use of a command-line tool called Graphviz (http://www.graphviz.org). Changes get made in the Rails

Re: Workflow to allow heroku to install a 'private' (local) gem on deploy

2010-08-11 Thread David Balatero
If Bundler is running on Heroku, the Heroku UNIX user account needs to have its public key in your Github repo as an authorized key. Each Heroku machine will have a different SSH key generated, and you non-deterministically deploy to some machine in the Heroku cloud each time you deploy. Even if

Re: Workflow to allow heroku to install a 'private' (local) gem on deploy

2010-08-09 Thread David Balatero
If you could package a custom SSH pub/private keypair with your Gemfile, you could then: 1) Add that pub key to Github 2) Set the :git source in the Gemfile for your private gem to point at your private SSH Github URL. However, I don't believe Bundler supports having an embedded public/private

private git repos in bundler

2010-08-06 Thread David Balatero
If I have a private library on Github that I want to include in my Heroku app via Bundler, I know I can pass the Git-SSH URL to Bundler. However, the deploy machine would have to have the correct SSH keys to clone from github. Is it possible to get my app's SSH pub key, and add it to my project on