librelist archives

« back to archive

How to deploy to app engine?

How to deploy to app engine?

From:
Carson Welsh
Date:
2010-06-06 @ 18:07
Do you need to do anything special to deploy a Flask app to App
Engine? Are there any docs on how to do this?

Re: [flask] How to deploy to app engine?

From:
Rodrigo Moraes
Date:
2010-06-07 @ 06:02
On Sun, Jun 6, 2010 at 3:07 PM, Carson Welsh wrote:
> Do you need to do anything special to deploy a Flask app to App
> Engine? Are there any docs on how to do this?

This project has an example:

   http://bitbucket.org/tlynn/appengine-skel/src

Basically you should point app.yaml to a file with a main() function
that runs the app using CGIHandler:

    http://bitbucket.org/tlynn/appengine-skel/src/tip/src/app.yaml
    http://bitbucket.org/tlynn/appengine-skel/src

Hope this helps.
-- rodrigo

Re: [flask] How to deploy to app engine?

From:
Carson Welsh
Date:
2010-06-07 @ 21:10
Yes, that definitely helps. Thank you.

- Carson

On Mon, Jun 7, 2010 at 8:02 AM, Rodrigo Moraes <rodrigo.moraes@gmail.com> wrote:
> On Sun, Jun 6, 2010 at 3:07 PM, Carson Welsh wrote:
>> Do you need to do anything special to deploy a Flask app to App
>> Engine? Are there any docs on how to do this?
>
> This project has an example:
>
>   http://bitbucket.org/tlynn/appengine-skel/src
>
> Basically you should point app.yaml to a file with a main() function
> that runs the app using CGIHandler:
>
>    http://bitbucket.org/tlynn/appengine-skel/src/tip/src/app.yaml
>    http://bitbucket.org/tlynn/appengine-skel/src
>
> Hope this helps.
> -- rodrigo
>