diff options
| author | Andi Albrecht <albrecht.andi@gmail.com> | 2009-04-03 21:26:42 +0200 |
|---|---|---|
| committer | Andi Albrecht <albrecht.andi@gmail.com> | 2009-04-03 21:26:42 +0200 |
| commit | 361122eb22d5681c58dac731009e4814b3dd5fa5 (patch) | |
| tree | b096496bc9c6b8febe092d0aefd56de1a4f8f4a0 /extras/appengine/app.yaml | |
| download | sqlparse-361122eb22d5681c58dac731009e4814b3dd5fa5.tar.gz | |
Initial import.
Diffstat (limited to 'extras/appengine/app.yaml')
| -rw-r--r-- | extras/appengine/app.yaml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/extras/appengine/app.yaml b/extras/appengine/app.yaml new file mode 100644 index 0000000..6aa08b2 --- /dev/null +++ b/extras/appengine/app.yaml @@ -0,0 +1,27 @@ +application: sqlformat +version: 2 +runtime: python +api_version: 1 + +default_expiration: 7d # This is good for images, which never change + +handlers: + +- url: /(robots.txt|favicon.ico) + static_files: static/\1 + upload: static/(robots.txt|favicon.ico) + +- url: /google7a062e78b56854c0.html + static_files: static/robots.txt + upload: static/robots.txt + +- url: /static/(script.js|styles.css|upload.py) + static_files: static/\1 + upload: static/(script.js|styles.css|upload.py) + expiration: 1h # Shorter expiration, these change often + +- url: /static + static_dir: static + +- url: .* + script: main.py |
