Friends,

   Well, as I have this structure in my project and my main file
app.py:

   app-dir
       static
           css
           images

   Follow the complete app.yaml file for to run your app in GAE.

app.yaml file:

application: your-app-id
version: 1
api_version: 1
runtime: python

handlers:

- url: /static/css/(.*)
  static_files: static/css/\1
  upload: static/css/(.*)
  secure: optional

- url: /static/images/(.*)
  static_files: static/images/\1
  upload: static/images/(.*)
  secure: optional

- url: /.*
  script: app.py
  secure: optional

-- 
You received this message because you are subscribed to the Google Groups 
"web.py" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/webpy?hl=en.

Reply via email to