Re: Debugging Email

2009-11-25 Thread David Dollar
this message because you are subscribed to the Google Groups Heroku group. To post to this group, send email to her...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/heroku?hl=. -- David Dollar -- You received this message because you are subscribed

Re: Something wrong with Heroku?

2009-11-27 Thread David Dollar
We had a very brief outage this morning. we identified and corrected an issue related to our AMQP infrastructure. All apps are now back up. - Heroku Support Team On Fri, Nov 27, 2009 at 10:05 AM, geolev geo...@gmail.com wrote: I can't get to any of my apps. I get the following error with a

Re: reading database.yml

2009-11-27 Thread David Dollar
Would it be possible to have your applications expose an API to talk to each other rather than sharing a physical database? On Fri, Nov 27, 2009 at 11:30 AM, Emanuele Tozzato etozz...@gmail.comwrote: I'm aware that database.yml is generated by the deployment script, but I need to share some

Re: Internal server error when adding Custom Domain + Zerigo DNS add-ons

2009-11-30 Thread David Dollar
There's currently a bug related to this that should be addressed very soon. Thanks for the stack trace, I'm adding that to the bug. I'll let you know as soon as it's fixed. Cheers, David On Mon, Nov 30, 2009 at 5:01 AM, Vitaliy Khustochka xyc...@gmail.comwrote: TypeError in Domain

Re: App failed to start

2009-12-02 Thread David Dollar
The Rails 2.3.5 gem (actionpack specifically) has a bug where the gem spec declares a dependency on Rack 1.0 but the gem itself tries to load Rack 1.0.1. We have now manually installed Rack 1.0.1 in the cloud. Try restarting your app using heroku restart to see if that clears it up. If it

Re: db:push unable to find taps

2009-12-02 Thread David Dollar
Try changing that rescue LoadError to rescue LoadError = ex puts ex.inspect to get a better idea of what is failing to load. - David On Wed, Dec 2, 2009 at 4:55 PM, Chris Baglieri chris.bagli...@gmail.comwrote: Installed the latest heroku gem and still no luck. Any thoughts would be

Re: Heroku Spree Commerce + SOA

2009-12-07 Thread David Dollar
1. If I have to create all the web services as a separate heroku apps, how would I share the database instance between the more than one services or apps like admin tools or crons? While sharing a database between apps isn't officially supported, you could have a way to expose an app's

Re: Taps gem not recognized

2009-12-08 Thread David Dollar
This is often another LoadError masking as this error. Try the following: gem install open_gem gem open heroku Navigate to lib/heroku/commands/db.rb Change the following two lines: rescue LoadError error Install the Taps gem to use db commands. On most systems this will be:\nsudo gem

Re: password protected site

2009-12-08 Thread David Dollar
If you want to do it with Rails, check out http://railscasts.com/episodes/82-http-basic-authentication You can set your RAILS_ENV to staging/testing using heroku config:add apply the before_filter conditionally. Hope this helps! David On Tue, Dec 8, 2009 at 2:37 PM, Nick Quaranto n...@quaran.to

Re: If you reserve full instance for custom SSL - why don't I get more dynos?

2009-12-10 Thread David Dollar
probably wouldn't recommend trying to share it across people as that seems destined to lead to heartache somewhere, but if you want to get custom SSL on multiple apps under one cert, this seems like the way to do it. - David Dollar On Thu, Dec 10, 2009 at 6:06 PM, Kelly Heikkila ke...@coderow.com wrote

Re: ambethia-recaptcha gem not working

2009-12-14 Thread David Dollar
If that's a gem from Github you may want to add ambethia-recaptcha --source gems.github.com to your .gems file. Alternately, you can use the vanilla recaptcha gem by modifying the line that is requiring ambethia-recaptcha. If this is Rails, look for something like config.gem

Re: application error message, where are the logs?

2009-12-17 Thread David Dollar
Run heroku logs inside the app directory and you should see your logs. - David On Thu, Dec 17, 2009 at 1:27 AM, tommy wheels...@gmail.com wrote: hi, i have a very simple toy sinatra app using flickr_fu. i deployed to heroku and it posted to http://growing-rain-77.heroku.com The site gives

Re: New Relic support for Merb

2009-12-23 Thread David Dollar
Hey Andy, We're currently looking into allowing non-Rails applications to use the New Relic addon. I've currently got it working on a Sinatra application, but now we need to package that up and get it into production. Unfortunately I don't have an ETA yet, but we're working on it :) As far as a

Re: Question about Heroku Workers

2010-01-06 Thread David Dollar
Hey there, Like dynos, a worker is charged while it is active whether or not there is work for it to do. - David On Wed, Jan 6, 2010 at 1:19 AM, Yuri Niyazov yuri.niya...@gmail.com wrote: I installed DJ into my app, and ran heroku workers 1 My question is: do I get charged for having a

Re: error installing heroku gem (ruby 1.9 / mac os x)

2010-01-08 Thread David Dollar
I'm currently working on getting the heroku gem running on as many platforms as possible. If anyone would like to get involved in this effort, the gem is open source at http://github.com/heroku/heroku - David On Fri, Jan 8, 2010 at 2:32 AM, dan mr.dan.ma...@gmail.com wrote: i was looking

Re: Default rails landing page won't go away.

2010-01-08 Thread David Dollar
Try the following git rm public/index.html git commit -m remove default index page git push heroku - David On Fri, Jan 8, 2010 at 9:15 AM, JGrubb therealjohnnygr...@gmail.com wrote: I'm a complete and utter nooby, though not so new that I haven't run a search or five on this list to find if

Re: Upload file and process in DJ

2010-01-08 Thread David Dollar
Maybe, but there's no guarantee of that. The dyno that received the request may be running on a totally different server than the worker that processes it. In this case, you should upload the file to S3, then download from S3 in the worker for processing. Hope this helps, David On Fri, Jan 8,

Re: Upload file and process in DJ

2010-01-08 Thread David Dollar
This wouldn't work on Heroku because even though it's in a different thread it's still the same request, and we only allow requests to go for 30s. This would tie up your dyno for the background request. - David On Fri, Jan 8, 2010 at 2:08 PM, Karl threadh...@gmail.com wrote: On rufus-scheduler,

Re: Accidental 'heroku db:reset'

2010-01-08 Thread David Dollar
With db:reset you get a scary prompt asking you if you're sure. This is a good suggestion though. - David On Fri, Jan 8, 2010 at 9:00 PM, Ryan Heneise r...@donortools.com wrote: I should have put PREVENTING accidental 'heroku db:reset' - no, I haven't done this yet. But I have nightmares about

Re: error installing heroku gem (ruby 1.9 / mac os x)

2010-01-08 Thread David Dollar
Anyone using Ruby 1.9 feeling adventurous? Clone git://github.com/heroku/heroku.git, run rake spec, and let me know if you're green or not. - David On Fri, Jan 8, 2010 at 12:24 PM, Devyn Cairns devyn.cai...@gmail.com wrote: Why can't you guys just give an option in the app config for the Ruby

Re: Net::SMTPAuthenticationError when sending mail from console using Sendgrid

2010-01-25 Thread David Dollar
We have an issue with a handful of apps not picking up their credentials correctly. If you're running into this issue, try removing/re-adding your Sendgrid addon so that it picks up the proper authentication credentials. - David On Mon, Jan 25, 2010 at 11:24 AM, Simon Starr si...@starr.cx wrote:

Re: Delayed jobs failing with suspicious backtrace

2010-02-19 Thread David Dollar
New Relic is aware of the issue and has a fix so it just has to make it out to the gem. I'd imagine a few days at most. On Fri, Feb 19, 2010 at 6:42 PM, Doug Petkanics petkan...@gmail.com wrote: I had this issue this week and Heroku support suggested I disable New Relic add-on since their

Re: Better logging feedback

2010-02-25 Thread David Dollar
Give it a try now, we just pushed out some fixes to the Exceptional integration. On Thu, Feb 25, 2010 at 10:05 PM, Gustavo Beathyate r...@obviamente.pe wrote: I haven't been able to install exceptional for over a week. I keep getting internal server error messages… On Feb 25, 2010, at

Re: Problem with Net::HTTP.getResponse only in heroku

2010-03-01 Thread David Dollar
Twitter rate-limits the the Search API, more details can be found here: http://apiwiki.twitter.com/Rate-limiting If you use a custom User-Agent request header, the rate-limiting is less severe. You may want to give that a shot. Hope this helps, David On Mon, Mar 1, 2010 at 12:41 PM, Daniel

Re: Corrupted database

2010-03-18 Thread David Dollar
On Mar 18, 2010, at 11:23 PM, Mike wrote: I'm not really sure why, but now it thinks it's on version 0 of the database, even while it already has all of the tables from the full migration set. This leaves me unable to perform another db:migrate VERSION=0, and attempts to do so error out as it

Re: How to handle scheduled events?

2010-05-17 Thread David Dollar
Also take a look at http://github.com/ddollar/repeated_job - David On May 17, 2010, at 3:58 PM, Steve Wilhelm wrote: Take a look at Background Jobs / Workers at http://docs.heroku.com/background-jobs - Steve W. On May 17, 7:36 am, Jim Jones jjones35...@yahoo.com wrote: I'm new to

Re: Koi DB upgrade

2010-05-21 Thread David Dollar
Koi database upgrades happen immediately. A Koi is the same as a Blossom, with a higher space quota. - David On May 21, 2010, at 2:34 AM, fbjork wrote: Hi, anyone who knows how long it usually takes to get a Koi DB upgrade done? I've waiting several days now and no reply from support

Re: Repeated::Job cannot find Delayed::Job

2010-08-05 Thread David Dollar
Make sure the delayed_job plugin has been pushed to your app (that there is no .git subdirectory inside it masking the files) You can try to clone your app from heroku into /tmp to see a pristine state of what is in Heroku's repo. cd /tmp git clone g...@heroku.com:myapp.git On Aug 5, 2010, at

Re: Problems deploying an EventMachine + Sinatra application

2010-08-30 Thread David Dollar
There are a couple of issues with this code fragment on Heroku: * Your config.ru needs to set up and call run on a Rack-compatible application * All Heroku dynos are given one port, passed to thin, so you won't be able to have Websockets listening on an alternate port. Cheers, David On Aug 27,

Re: Ubuntu 10.10 (amd64) + rails 3.0.1 + heroku uninitialized constant error

2010-11-16 Thread David Dollar
I just pushed out a new version of the heroku gem that should fix this. Let me know if you're still seeing issues. Thanks, David On Nov 16, 2010, at 9:40 AM, Mateus wrote: No, I didn't work. I googled for possible errors involving rails 3 and PostGres gem. It gave me something related to

Re: Automating pgbackups

2010-11-18 Thread David Dollar
I threw this together to help out a bit automating your PGbackups. https://github.com/ddollar/heroku_backup_task On Nov 16, 2010, at 1:44 PM, Andrew C. wrote: I spin up an EC2 instance from my cron job. The EC2 instance captures and downloads the backup to S3, then shuts itself down. Works

Re: db:pull = Internal server error

2010-11-30 Thread David Dollar
Give this another shot on Ruby 1.9, it should be fixed now. Thanks, David On Nov 30, 2010, at 1:10 AM, Emanuele Tozzato wrote: problem solved using ruby 1.8.7, but I am sure I successfully used more recent versions.. Did I miss any update? -- You received this message because you

Re: Running a daemon process on Heroku

2010-12-07 Thread David Dollar
A Heroku worker is simply running rake jobs:work on your app so whatever happens behind that rake task is up to your app. On Dec 7, 2010, at 10:47 AM, Jonas jo...@jonasbnielsen.dk wrote: Hi guys, Hi guys, Ok, so I've succesfully developed a daemon that fires up EventMachine, subscribe

Re: Running a daemon process on Heroku

2010-12-08 Thread David Dollar
mean, it's okay to preoccupy that worker till eternity? :) On 7 Dec., 20:53, David Dollar da...@heroku.com wrote: A Heroku worker is simply running rake jobs:work on your app so whatever happens behind that rake task is up to your app. On Dec 7, 2010, at 10:47 AM, Jonas jo

Re: Best way to DB import 1M+ rows?

2010-12-10 Thread David Dollar
Another possible solution would be this: Upload your data in CSV/TSV/whatever form to S3. Write a rake task that does the following: * download from S3 to RAILS_ROOT/tmp * use the psql command line tool (it's on our dyno grid) or one of the ActiveRecord bulk import extensions to read the file

Re: Internal Server Error After a db:push

2011-01-10 Thread David Dollar
This appears to have been an issue in the taps server itself. Please try your push/pull again and it should be working now, sorry about that! -- You received this message because you are subscribed to the Google Groups Heroku group. To post to this group, send email to her...@googlegroups.com.

Re: Is there a preferred method of packaging assets in a Rails 3 app on Heroku?

2011-01-13 Thread David Dollar
Another approach if you're packaging assets like this anyway would be to upload them to S3 instead of adding them to the app. You could then use S3 as an asset host, and even take advantage of CloudFront as a CDN. On Jan 13, 2011, at 12:49 PM, Trevor Turk wrote: On Thursday, January 13, 2011

Re: Is there a preferred method of packaging assets in a Rails 3 app on Heroku?

2011-01-13 Thread David Dollar
I believe if you simply set the asset host in Rails, it will keep appending the timestamp at the end of the URLs it generates in your view. On Jan 13, 2011, at 12:55 PM, Trevor Turk wrote: On Thursday, January 13, 2011 5:51:42 PM UTC, David Dollar wrote: Another approach if you're packaging

Re: Logging - STDOUT ignores log_level

2011-02-05 Thread David Dollar
Hey there, Try changing your log lines to this: config.logger = Logger.new(STDOUT) config.logger.level = Logger::INFO Thanks, David On Feb 5, 2011, at 4:16 PM, Jesse wrote: just installed the logging addon http://docs.heroku.com/logging I am running a rails 2.2.2 app, maybe this occurs

Re: Your application is too busy to open a console session.

2011-02-14 Thread David Dollar
Console sessions do happen over a dyno. A dyno will be in-use for the time between when you press enter on a command and the result comes back. Idle time sitting at the console prompt does not use up a dyno. Hope this helps, David On Feb 13, 2011, at 6:46 AM, Neil Middleton wrote: This had

Re: Multiple users with different SSH keys

2011-03-03 Thread David Dollar
Check out https://github.com/ddollar/heroku-accounts Give the --auto option a try, but be aware that it will write to your ~/.ssh/config On Thu, Mar 3, 2011 at 10:58 AM, gezope gez...@gmail.com wrote: Hello, I would like to use different users with different keys. When I tried: git clone

Re: Dyno wake up processing

2011-03-08 Thread David Dollar
Files generated by cron will not be there for a web process. Here's a basic summary of how Heroku's dyno grid works: When you push up a copy of your app, we run a compile process on it (runs bundler, etc) and generate a slug which is a self-contained copy of your app. When you request any process

Re: Dyno wake up processing

2011-03-08 Thread David Dollar
When your app is idled out, it is taken out of the dyno grid. The next time it boots, it will have a clean tmp/ dir. As far as hooking the dyno wake, that would just be adding some code that runs when your app is booting. If you're using Rails, this could be a script in config/initializers --

Re: Taps Server Error: unexpected nil

2011-04-04 Thread David Dollar
What version of the taps gem are you using? On Apr 4, 2011, at 2:05 PM, Francois wrote: wondering if anyone has encountered the following error before when using heroku db:pull ? Saving session to pull_201104041103.dat.. !!! Caught Server Exception HTTP CODE: 500 Taps Server Error:

Re: Taps Server Error: unexpected nil

2011-04-04 Thread David Dollar
I'm working on a permanent solution. In the meantime you can roll back to taps 0.3.21. On Apr 4, 2011, at 2:13 PM, kbjerring wrote: I have just seen the exact same error (Using Taps-0.3.22) Alas, I have found no solution yet :( On Apr 4, 8:05 pm, Francois fhar...@gmail.com wrote:

Re: Taps Server Error: unexpected nil

2011-04-04 Thread David Dollar
gem? Regards. -- Ciprian Dunareanu Sent with Sparrow On Monday, April 4, 2011 at 9:21 PM, kbjerring wrote: Great! Taps 0.3.21 certainly works. On Apr 4, 8:16 pm, David Dollar ddol...@gmail.com wrote: I'm working on a permanent solution. In the meantime you can roll back to taps

Re: Taps Server Error: unexpected nil

2011-04-04 Thread David Dollar
you're looking for are: heroku 1.20.1.pre1 taps 0.3.23.pre1 Thanks, David On Apr 4, 2011, at 2:46 PM, Ciprian Dunareanu wrote: Yep, it worked with my previous heroku gem version: 1.9.14 Thanks :) On Monday, April 4, 2011 at 9:26 PM, David Dollar wrote: Sorry, forgot to mention that you

Heroku Client 2.0 Released

2011-04-27 Thread David Dollar
We've just released version 2.0 of the Heroku client. While most of the changes are behind the scenes, a few new things you'll notice include: * The help system has been completely revamped, including help for individual commands. * All commands now have namespaces for organizational purposes.

Re: Bundle Package

2011-05-17 Thread David Dollar
Yes they will. Cheers, David On Tuesday, May 17, 2011 at 9:26 AM, Scott Watermasysk wrote: If I run bundle package and commit my gems to my repository, will they be used by heroku when it executes bundle install? Thanks, Scott -- Scott Watermasysk Founder, KickoffLabs

Re: Rake aborted!

2011-05-21 Thread David Dollar
Looks like there's an issue with the latest rake released yesterday and Rails 3. http://stackoverflow.com/questions/5287121/undefined-method-task-using-rake-0-9-0-beta-4 Another solution would be to pin rake to 0.8.7 in your Gemfile. On Saturday, May 21, 2011 at 10:39 AM, Nikue wrote: I haven't

Re: Rake aborted!

2011-05-21 Thread David Dollar
Also related: https://github.com/rails/rails/issues/1171 On Saturday, May 21, 2011 at 10:42 AM, David Dollar wrote: Looks like there's an issue with the latest rake released yesterday and Rails 3. http://stackoverflow.com/questions/5287121/undefined-method-task-using-rake-0-9-0-beta-4

Re: Setting default app name?

2011-05-26 Thread David Dollar
This happens if you have more than one git remote as a heroku app to avoid running commands on the wrong app. You can set the default remote by running git config heroku.remote heroku Cheers, David On Thursday, May 26, 2011 at 12:49 PM, Pulley wrote: I just updated my heroku gem from 1.17.5

Re: MongoHQ and node.js

2011-06-02 Thread David Dollar
This should be working for you now, please give it another shot. Cheers, David On Wednesday, June 1, 2011 at 7:29 AM, David Hall wrote: I'm trying to deploy a node.js app on the cedar stack that uses MongoHQ. I am not sure how what to include in package.json to get the mongo module

Re: Suddenly can't deploy Rails 3/Ruby 1.92 from Windows -- crash is about rack 1.3.0 vs rack 1.2.3

2011-06-07 Thread David Dollar
This happens because rack 1.3.0 still exists in your app's bundler cache and the stacks prior to cedar do not bundle exec when running your app. You could work around this by deleting and recreating the app. You could also give the cedar stack a try which does not have this issue. Cheers,

Re: Procfile declares types - (none)

2011-06-20 Thread David Dollar
Make sure that your file is called Procfile, with a capital P On Saturday, June 18, 2011 at 7:28 PM, Jason Kuhrt wrote: I have a problem deploying a very simple node.js app to `--stack cedar` when I `git push heroku master` I get the following: - Heroku receiving push - Node.js

Re: Unable to verify SSL certificate for api.heroku.com

2011-06-20 Thread David Dollar
This will happen if your openssl libraries are not functioning correctly. You can set HEROKU_SSL_VERIFY=disable in your environment to prevent the verification checks. Cheers, David On Monday, June 20, 2011 at 4:51 PM, iamtheschmitzer wrote: I updated my heroku gem and I get the warning:

Re: Cedar does not recognize RACK_ENV?

2011-07-14 Thread David Dollar
Do you see the same behavior if you run RACK_ENV=staging rails console locally? On Jul 14, 2011, at 5:04 AM, arunthampi wrote: Hey guys - Tried running one of my apps on Cedar with RACK_ENV set to 'staging' but when I run `heroku run rails console` it says Loading production environment.

Re: SQL console plugin stopped working - anyone know why?

2011-07-26 Thread David Dollar
Give it another shot, I just fixed an issue on the server. On Jul 26, 2011, at 5:01 PM, S Wrobel wrote: The extremely useful Heroku SQL plugin just stopped working about a week ago. There seem to be a lot of people with the same issue: when you run heroku sql it says ! Internal server error

Re: New Relic causing crash on deploy

2011-09-23 Thread David Dollar
Would you mind filing a ticket about this at http://support.heroku.com so we can get to the bottom of it? Thanks, David -- You received this message because you are subscribed to the Google Groups Heroku group. To view this discussion on the web visit

Re: rails 3.2 on cedar only?!

2012-01-28 Thread David Dollar
Currently, yes, Rails 3.2 only runs on Cedar. We are looking into the bamboo problems and hope to have a fix soon. On Wednesday, January 25, 2012 at 10:34 AM, vierundsech...@googlemail.com wrote: I just tried to run rails 3.2 and ran into all sorts of weird errors (mostly gem-problems). I'm

Re: node version bump

2012-02-20 Thread David Dollar
On Mon, Feb 20, 2012 at 6:08 PM, David Dollar da...@heroku.com wrote: Hi David, Last week we added the ability to select your Node.js version to Heroku Labs, our breeding ground for experimental new features. Check it out at: http://devcenter.heroku.com/articles/labs-nodejs-versions

Re: Gem Manifest deprecation

2012-04-06 Thread David Dollar
The .gems solution was non-deterministic in the normal use case. If someone specified sinatra in their .gems file, they would often end up with a completely different version in production than they were using in development. Sure you could specify an exact version of every gem in your .gems file,

Re: node db-migrate?

2012-05-23 Thread David Dollar
The Node.js buildpack puts the bin directory of your node_modules into the path. If you put db-migrate into your package.json you should be able to run it with: $ heroku run db-migrate ... On Wed, May 23, 2012 at 8:59 AM, Jeff Cole cole.j...@gmail.com wrote: Has anyone tried running node

Re: How do you manage your production secrets (API key's etc.) without using source control?

2012-10-29 Thread David Dollar
Check out https://github.com/ddollar/heroku-config I store my development environment in .env and my production environment in the Herou app. heroku-config can be used to push/pull while not overwriting existing values so it's easy to have variables with different values in development. On Mon,

Re: Heroku Labs: pipelines?

2012-12-17 Thread David Dollar
https://devcenter.heroku.com/articles/using-pipelines-to-deploy-between-applications You can find the documentation pages for Labs features using `heroku labs:info` Cheers, David On Mon, Dec 17, 2012 at 9:58 AM, Michel Pigassou dag...@gmail.com wrote: Hi. heroku labs:list gives pipelines

Re: Automated Toolbelt installation on Windows

2013-01-15 Thread David Dollar
The Toolbelt uses Inno Setup, which I believe has some flags for skipping things. You might try /silent or /verysilent like the Toolbelt itself does on the Ruby installer. https://github.com/heroku/toolbelt/blob/master/dist/resources/exe/heroku.iss#L49 On Tue, Jan 15, 2013 at 5:50 AM, Matthew

Re: Automated Toolbelt installation on Windows

2013-01-16 Thread David Dollar
exploring sending keys to the process via PowerShell which feels a little dirty... Kind Regards, Matthew On Tuesday, January 15, 2013 9:53:58 PM UTC+11, David Dollar wrote: The Toolbelt uses Inno Setup, which I believe has some flags for skipping things. You might try /silent or /verysilent

Re: Heroku and Proximo

2013-02-04 Thread David Dollar
Would you mind filing a support ticket so I can dig into this with you? On Wednesday, January 30, 2013, Xenio Ye wrote: I need for the remote mysql db that I used to use fine in Heroku to connect to my newly updated server that now only allows specific ip addresses. I setup the Proximo

Re: See contents of slug?

2013-02-20 Thread David Dollar
You can use `heroku run bash` to explore around: $ heroku run bash ~ du -sh * On Wed, Feb 20, 2013 at 7:36 AM, Phil Gyford gyf...@gmail.com wrote: I have a Django project on Heroku, and its slug size has ballooned to 110MB. I've added a couple of things to my .slugignore file, which took it

Re: Issues getting custom binary to run on Heroku

2013-10-09 Thread David Dollar
You can try using Anvil for this: $ gem install anvil The gist below is an example for compiling bsdiff on Heroku: https://gist.github.com/ddollar/7c37dfd22528a9024a52 On Wed, Oct 9, 2013 at 8:48 PM, Robert Fletcher lobatifri...@gmail.comwrote: Hmm, okay, so I'm going to have to compile it

Re: Issues getting custom binary to run on Heroku

2013-10-09 Thread David Dollar
That looks like it should work from my eyeball compiler :) If you check out the comment at the bottom of the gist I pasted earlier you can see the anvil syntax for compiling from a gist. On Wed, Oct 9, 2013 at 10:34 PM, Robert Fletcher lobatifri...@gmail.comwrote: Okay, progress made. I've got

Re: Issues getting custom binary to run on Heroku

2013-10-09 Thread David Dollar
You'll need the link to the raw gist, which you can get by clicking the icon on your gist page. You'll probably want to drop the second ID out of the URL (the commit hash) so that the URL stays valid as you continue to make edits to the gist. On Wed, Oct 9, 2013 at 10:42 PM, Robert Fletcher

Re: Issues getting custom binary to run on Heroku

2013-10-09 Thread David Dollar
, Oct 9, 2013 at 7:45 PM, David Dollar da...@heroku.com wrote: You'll need the link to the raw gist, which you can get by clicking the icon on your gist page. You'll probably want to drop the second ID out of the URL (the commit hash) so that the URL stays valid as you continue to make edits