So I have successfully deployed an app using webapp2/jinja2 and a Paste server, but am having trouble serving static stylesheets.
I have had luck accessing static fi
you dont need a static file handler. upload the app with the static file folder by adding this to your app.yaml
app.yaml
- url: /static/ static_dir: static
docs are here: https://developers.google.com/appengine/docs/python/config/appconfig#Static_Directory_Handlers
edit: see answer below in comments