Re: git commit failured | facebook app

2012-06-07 Thread Kerri Miller
git add . git commit -m "git commit -a doesn't add untracked files" git push herkou master -k- On Thu, Jun 7, 2012 at 6:45 AM, Florian Reuahtiehcs wrote: > Hi, > > i was trying to change something in my facebook app but everytime if i > try to commit with > > $ git commit -am > > i get the messa

Re: I need the dumbed down version of how to do this

2012-03-15 Thread Kerri Miller
http://seattlerailsbridge.heroku.com/ has some good pages on very basic "working with heroku" information - you could start there? Without very specific information about your application and the error you're seeing, I doubt anyone here can do much more than guess :( One thing I'm sure of, though

Re: Looking at the Production Database

2012-02-08 Thread Kerri Miller
Personally I just use the postgres console v0v -k- On Wed, Feb 8, 2012 at 1:13 PM, Kevin Goslar wrote: > The Rails console provides simple and convenient access to the production db > through ActiveRecord models. Having said that, I'm interested in your > database viewer as well! Want to releas

Re: Can I reuse app name?

2012-01-09 Thread Kerri Miller
Yes, that'll work. Simple enough to test - create a new app "mycrappyapp", delete it, then recreate it. -k- On Mon, Jan 2, 2012 at 5:27 AM, kota wrote: > Hi all. > I want to change may app stack bamboo to cedar. Migration bamboo to > cedar is not supported yet. So, I have to delete my app and r

Re: UDP Routing

2011-12-30 Thread Kerri Miller
I myself tried to do something with UDP earlier this fall, and discovered that Heroku only supports HTTP routing. -k- On Fri, Dec 30, 2011 at 4:30 PM, John Maxwell wrote: > I'm struggling to configure a Heroku app to accept incoming UDP requests - > does the router support incoming connections i

Re: App has an empty code repository

2011-12-28 Thread Kerri Miller
Heroku only responds to the master branch, so you need to push your local topic branch into the heroku remote master branch: $ git push heroku user-content:master (You may need to add --force) -k- On Wed, Dec 28, 2011 at 12:31 PM, Anil Punjabi wrote: > Hi all, > > I just pushed content from my

Re: How do you tell which of your Heroku apps are which?

2011-11-15 Thread Kerri Miller
...or just change the name of your Heroku apps to something meaningful to you. -k- On Tue, Nov 15, 2011 at 11:54 AM, David Dollar wrote: > One option would be to clone the apps locally to determine which is which: > > cd /tmp > git clone g...@heroku.com:project-name.git > > Cheers, > David > > O

Re: database and aws

2011-11-03 Thread Kerri Miller
A couple quick ideas to explore.. - is the memory limit the same on workers as dynos? - could you thread out the computations to different workers? - don't use Heroku's postgres, but an Amazon RDS or similar 3rd-party DB, to get around the connection limitation -k- On Thu, Nov 3, 2011 at 8:20

Re: 404 Nginx Errors

2011-10-17 Thread Kerri Miller
Thanks for the update. On Mon, Oct 17, 2011 at 12:25 PM, joshmckin wrote: > Looks like they tried something; https://status.heroku.com/ > > But I'm still getting 404 and somethings heroku restart fails. > > -- > You received this message because you are subscribed to the Google Groups > "Heroku

Re: Fragment Caching "kind of" expiring

2011-05-06 Thread Kerri Miller
"Fragment caching is a great mechanism for caching widgets or partials in your application. Fragment caching uses (and requires) the Heroku Memcache add-on. " On Fri, May 6, 2011 at 11:39 AM, joshmckin wrote: > Actually it caches to the tmp folder which is available in Heroku. > Plus: http://devc

Re: Download CSV from AWS as file, not text

2011-05-05 Thread Kerri Miller
IIRC S3 likes to send things as "application/octet-stream" if you don't specify the MIME when you upload. -k- On Thu, May 5, 2011 at 10:18 AM, Steve Smith wrote: > When you inspect the headers of the file are you seeing a content type? It > sounds like you need to tell amazon the content-type an

Re: app fails to do job, when I don't change then save applicationController

2011-01-03 Thread kerri miller
Without reading your code line by line.. sometimes I've found I need to do a "heroku restart" to get it to pick up some categories of changes. I don't really have any good info on what circumstances or types of changes require it, but give it a try? On Mon, Jan 3, 2011 at 2:31 AM, Michael Baldo

Re: heroku db:push doesnt work

2011-01-01 Thread kerri miller
(I seem to remember some flag you could set to specify the source, but its been a few months) good luck! -kerri- On Sat, Jan 1, 2011 at 6:15 AM, sasha revzin wrote: > heroku db:push > > :) > > On Fri, Dec 31, 2010 at 22:06, kerri miller wrote: > >> what are you enter

Re: heroku db:push doesnt work

2010-12-31 Thread kerri miller
what are you entering for a command? On Mon, Dec 27, 2010 at 2:31 AM, Sasha wrote: > tried reinstall heroku and taps and nothing helped :( > > here what im getting: > > Sending schema > c:/Ruby192/lib/ruby/gems/1.9.1/gems/sequel-3.17.0/lib/sequel/adapters/ > sqlite.rb:5:in `rescue in ': SQLite3:

Re: Some Heroku questions

2010-12-31 Thread kerri miller
For us, staging is basically the wild west - anything can go on it at any time -- HEAD, crazy experimental branches, etc. For production releases I branch and tag, and only the "production" branch goes to a live server. -k- On Thu, Dec 30, 2010 at 8:57 AM, Wes Gamble wrote: > To piggyback on