Re: Sending e-mails with the new pricing scheme

2009-05-08 Thread giorgio

How do you verify the account?
Does anybody know?

On Apr 30, 12:44 am, August Lilleaas  wrote:
> I see, thanks!
>
> On Apr 27, 2:58 pm, Morten Bagai  wrote:
>
> > Hi,
>
> > Sending outgoing email (via an external SMTP service) will continue to  
> > remain free. You will need toverifyyouraccountto activate outgoing  
> > email traffic by providing us your billing info. You will not be  
> > billed anything until you order actual paid services, but since email  
> > traffic carries a high potential for abuse we need some basic customer  
> > information.
>
> > As you may already have guessed from this, verification will replace  
> > blessings as the method for activating premium features (paid and  
> > unpaid).
>
> > Best,
>
> > Morten
>
> > On Apr 26, 2009, at 3:23 AM, August Lilleaas wrote:
>
> > > Hi there,
>
> > > I have a small sinatra app that needs to send e-mails. Probably 10-ish
> > > mails a week, not a lot. I couldn't find anything about e-mails on the
> > > new pricing page, do I still have to apply for a blessing to get e-
> > > mails?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Can't use CNAME and MX records together

2009-05-08 Thread Oren Teich

On Fri, May 8, 2009 at 6:36 PM, Adam Wiggins  wrote:
>
> Another fix for this is to alias your domain to point to
> proxy.heroku.com instead of heroku.com.  i.e.:
>
>
> Although it reads a little less nicely, this avoids having to tinker
> with MX records, so perhaps we'll make this the official way to set up
> custom domains.  What do you guys think?
>

Does this actually make any difference for the MX records?  My issue
was probably user error, and the blog post I found seems to indicate
that MX records & having your domain point anywhere else is a bad
idea, so I think the existing config and instructions are ok.

Oren

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Other branch -> other URL ?

2009-05-08 Thread Adam Wiggins

On Fri, Apr 24, 2009 at 7:51 AM, Damien MATHIEU  wrote:
> When I work on a new feature for my application, I do it in a specific
> branch; I commit in that branch.
> [...]
> For example, have xxx.heroku.com on the branch master of the
> application xxx.
> And yyy.xxx.heroku.com on the branch yyy of the same application.

If I'm understanding you correctly, you should be able to do this with
two different remotes, and using git's syntax to pushing to a specific
branch on the remote.  Assuming that you have branches "master" and
"experimental", for example:

heroku create myapp-experimental --remote app2
git checkout experimental
git push app2 master

That will push whatever the current branch is, in this case
experimental, to the master branch on Heroku.

Adam

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Can't use CNAME and MX records together

2009-05-08 Thread Adam Wiggins

Another fix for this is to alias your domain to point to
proxy.heroku.com instead of heroku.com.  i.e.:

$ host mydomain.com
mydomain.com is an alias for proxy.heroku.com.
proxy.heroku.com has address 75.101.145.87
proxy.heroku.com has address 75.101.163.44

Although it reads a little less nicely, this avoids having to tinker
with MX records, so perhaps we'll make this the official way to set up
custom domains.  What do you guys think?

Adam

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Verify account

2009-05-08 Thread giorgio

Or is this feature not actually available yet?
Does nobody have a "verified" account?
G.

On May 8, 2:10 pm, giorgio  wrote:
> Hi,
>
> It appears that "Verify" is the new "Bless"
> But how do you do it?
>
> I cant see any link/button/explanation..
>
> Is it so obvious that I cant see the wood for the trees.
>
> I need to send email.
>
> Cheers
> George
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Writing to /public

2009-05-08 Thread GreenAsJade

What sort of assets?

Are these basically static assets?

The answer I believe heroku give is "put them in a service designed
for that, like amazon S3".

I've been doing this for a while with one of my apps
(cmmods.greenasjade.net), and it's wonderful...

... except there's a 10M upload limit through heroku apps, so you have
to have your direct upload them to S3.

I haven't conquered that problem yet, working on it as we speak...

Martin

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Handle incoming e-mails

2009-05-08 Thread Morten Bagai

I think I'd just set up Google apps to handle email for my domain, and  
use one the available POP3 or IMAP libs to check whatever account I  
want my Ruby app to process.

/Morten

On May 7, 2009, at 1:37 AM, Thomas Balthazar wrote:

>
> Hello,
>
> I've seen a lot of posts about handling outgoing e-mails.
>
> But what would be the best solution to handle incoming e-mails?
> Having a server elsewhere (Slicehost, Mosso, ...), configured with
> Postfix and a Rails app that handle/parse incoming e-mails, then ping
> the Heroku app with the data?
>
> Thanks for sharing your ideas.
>
> Best,
> Thomas.
> >


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Writing to /public

2009-05-08 Thread Justin French

Instead of writing them to disk, write them to the cache with a long  
expiry.  Each time you deploy the app, the cache is cleared.

For me, the easiest way was lazy caching.  Have a controller that  
responds to the request the first time (passing the asset through and  
sending the right cache headers) then let varnish take care of it from  
there.

Justin French

On 09/05/2009, at 3:09 AM, Carl Fyffe  wrote:

>
> Wow, I am just bumping into all of the constraints these days...
>
> Is there any way to get around the read-only filesystem? My app
> dynamically loads assets at runtime to public. Is there anyway we can
> put them in tmp and link to it? Or create a special area in public
> that is like tmp?
>
> >

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Service status?

2009-05-08 Thread GreenAsJade


It's interesting that for a service with thousands of deployed apps,
how _little_ fuss there is when it goes down!  Wierd really!

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Git Submodule Support

2009-05-08 Thread Ron Evans

Actually, I think you would also need to remove the .gitmodules file
to eliminate the submodule dependencies from the main git repo

r.

On Fri, May 8, 2009 at 8:14 AM, Bill Burcham  wrote:
> Just so everyone is clear, those instructions do not show how to use
> submodules on heroku. They show how to eliminate submodule dependencies from
> your project.
> >
>



-- 
Ron Evans
310-597-1013
ron.ev...@gmail.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Service status?

2009-05-08 Thread Harry Vangberg

May I suggest that you set up a Twitter account or a blog or something
for reporting service disturbances such as the one today that was
reported by multiple users?

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Writing to /public

2009-05-08 Thread Carl Fyffe

Wow, I am just bumping into all of the constraints these days...

Is there any way to get around the read-only filesystem? My app
dynamically loads assets at runtime to public. Is there anyway we can
put them in tmp and link to it? Or create a special area in public
that is like tmp?

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Git Submodule Support

2009-05-08 Thread Bill Burcham
Just so everyone is clear, those instructions do not show how to use
submodules on heroku. They show how to eliminate submodule dependencies from
your project.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



app going wrong

2009-05-08 Thread fhopecc

Today I pull my git in heroku,
the server show the following error message.
And my app is always going wrong.

my app is http://moneylog.heroku.com

Anyone can help me.

Error Message:
C:/git pull
Internal server error
/usr/local/lib/ruby/gems/1.8/gems/rest-client-0.9.2/lib/restclient/
request.rb:14
4:in `process_result': HTTP status code 500
(RestClient::RequestFailed)
from /home/git/bin/git_proxy:27:in `join'
from /home/git/bin/git_proxy:27
from /home/git/bin/git_proxy:27:in `each'
from /home/git/bin/git_proxy:27
fatal: The remote end hung up unexpectedly
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Git Submodule Support

2009-05-08 Thread Baptiste Decroix

From
http://docs.heroku.com/constraints#git-submodules


Git submodules are not currently supported. We’re evaluating whether
or not to support these; in the meantime you’ll need to include any
submodules into the main project. You can do so like this:

$ cd myapp
$ rm -rf `find . -mindepth 2 -name .git`
$ git add .
$ git commit -m "brought submodules into the main repo"

If you’re not certain whether your project has Git submodules, you can
run this command:

$ find . -mindepth 2 -name .git

If it prints any output, you have submodules.



On Thu, May 7, 2009 at 7:21 PM, Carl Fyffe  wrote:
>
> I am glad I am not alone wanting submodule support. I found the same
> code and stayed away.
>
> I think some kind of answer from Heroku (I know they may be in the air
> right now) would be awesome.
>
> Carl
>
> On 5/7/09, Bill Burcham  wrote:
>> I found a rake recipe that purportedly did the trick. I won't paste it here
>> since I never got it to work on Heroku myself. My approach is currently just
>> to collapse all my submodules into the main repo and push it.
>> I do hope heroku adds support for submodules since its a valuable tool for
>> code reuse.
>>
>> >
>>
>
> >
>



-- 
Baptiste Decroix
Software Engineer
+1 514 313 7320
www.Dental-Wings.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Problems pushing, pulling and cloning

2009-05-08 Thread UncleGene

Looks like everything is down

On May 8, 6:17 am, Harry Vangberg  wrote:
> I'm getting the same when tryign to do a `git pull heroku master` from
> the app 'junitest'.
>
> 2009/5/4 Carlos Kozuszko :
>
>
>
> > I'm starting with heruku, I was trying to setup my first app and I've
> > succesfully pushed a branch of my app to the heroku with repository
> > for my app.
> > But when I wanted to push further changes to fix my gems manifesto I
> > couldn't do it.
>
> > This is what I get when I try to push:
>
> > R:\cdelavictoria>git push heroku master
> > Internal server error
> > /usr/local/lib/ruby/gems/1.8/gems/rest-client-0.9.2/lib/restclient/request.rb:144:in
> > `process_result': HTTP status code 500 (RestClient::RequestFailed)
> >       from /home/git/bin/git_proxy:27:in `join'
> >       from /home/git/bin/git_proxy:27
> >       from /home/git/bin/git_proxy:27:in `each'
> >       from /home/git/bin/git_proxy:27
> > fatal: The remote end hung up unexpectedly
>
> > I can't even clone a new version of the app I've previously uploaded:
>
> > J:\>git clone -o heroku g...@heroku.com:cdelavictoria.git
> > Initialize cdelavictoria/.git
> > Initialized empty Git repository in J:/cdelavictoria/.git/
> > Internal server error
> > /usr/local/lib/ruby/gems/1.8/gems/rest-client-0.9.2/lib/restclient/request.rb:144:in
> > `process_result': HTTP status code 500 (RestClient::RequestFailed)
> >       from /home/git/bin/git_proxy:27:in `join'
> >       from /home/git/bin/git_proxy:27
> >       from /home/git/bin/git_proxy:27:in `each'
> >       from /home/git/bin/git_proxy:27
> > fatal: The remote end hung up unexpectedly
>
> > Does everyone know what is that error I'm getting?
>
> > Thanks in advance.
>
> > Carlos K.
>
> > --
> >http://www.ckozus.com
> >http://www.insignia4u.com
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: Problems pushing, pulling and cloning

2009-05-08 Thread Harry Vangberg

I'm getting the same when tryign to do a `git pull heroku master` from
the app 'junitest'.

2009/5/4 Carlos Kozuszko :
>
> I'm starting with heruku, I was trying to setup my first app and I've
> succesfully pushed a branch of my app to the heroku with repository
> for my app.
> But when I wanted to push further changes to fix my gems manifesto I
> couldn't do it.
>
> This is what I get when I try to push:
>
> R:\cdelavictoria>git push heroku master
> Internal server error
> /usr/local/lib/ruby/gems/1.8/gems/rest-client-0.9.2/lib/restclient/request.rb:144:in
> `process_result': HTTP status code 500 (RestClient::RequestFailed)
>       from /home/git/bin/git_proxy:27:in `join'
>       from /home/git/bin/git_proxy:27
>       from /home/git/bin/git_proxy:27:in `each'
>       from /home/git/bin/git_proxy:27
> fatal: The remote end hung up unexpectedly
>
> I can't even clone a new version of the app I've previously uploaded:
>
> J:\>git clone -o heroku g...@heroku.com:cdelavictoria.git
> Initialize cdelavictoria/.git
> Initialized empty Git repository in J:/cdelavictoria/.git/
> Internal server error
> /usr/local/lib/ruby/gems/1.8/gems/rest-client-0.9.2/lib/restclient/request.rb:144:in
> `process_result': HTTP status code 500 (RestClient::RequestFailed)
>       from /home/git/bin/git_proxy:27:in `join'
>       from /home/git/bin/git_proxy:27
>       from /home/git/bin/git_proxy:27:in `each'
>       from /home/git/bin/git_proxy:27
> fatal: The remote end hung up unexpectedly
>
> Does everyone know what is that error I'm getting?
>
> Thanks in advance.
>
> Carlos K.
>
> --
> http://www.ckozus.com
> http://www.insignia4u.com
>
> >
>

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---



Re: 500 Error?!?

2009-05-08 Thread GreenAsJade

Had some of those earlier, they went away.

Now I get a fail whale when I try to pull my data off heroku though...
and I can't create a new app on it...

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Heroku" group.
To post to this group, send email to heroku@googlegroups.com
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en
-~--~~~~--~~--~--~---