Hello, I am having problems with Development server running very slow. At some point previously GAE was trying to run an old script in a folder which happened to be in PYTHONPATH. After deleting that script and adding favicon.ico I noticed an improvement. But now I see that when I activate the stylesheet in Mako template
<head> <link type="text/css" rel="stylesheet" href="/stylesheets/main.css" / > </head> it loads it every time the app is running. I believe this slows it down. What is the solution to this? My app.yaml is: application: re-peater version: 1 runtime: python api_version: 1 handlers: - url: /favicon.ico static_files: static/images/favicon.ico upload: static/images/favicon.ico - url: /stylesheets static_dir: stylesheets - url: /.* script: repeater.py Thanks! -- You received this message because you are subscribed to the Google Groups "Google App Engine" 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/google-appengine?hl=en.
