Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/app.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'app.yaml')
-rw-r--r--app.yaml47
1 files changed, 47 insertions, 0 deletions
diff --git a/app.yaml b/app.yaml
new file mode 100644
index 0000000..a4ce4ee
--- /dev/null
+++ b/app.yaml
@@ -0,0 +1,47 @@
+application: turtleartsite
+version: 1
+api_version: 1
+runtime: python
+
+handlers:
+
+#- url: /(?P<a>.+?)/static/(?P<b>.+)
+# static_files: applications/\1/static/\2
+# upload: applications/(.+?)/static/(.+)
+# secure: optional
+
+- url: /static/(?P<s>.+)
+ static_files: applications/turtlesite/static/\1
+ upload: applications/turtlesite/static/(.+)
+ secure: optional
+
+- url: /admin-gae/.*
+ script: $PYTHON_LIB/google/appengine/ext/admin
+ login: admin
+
+- url: /_ah/queue/default
+ script: gaehandler.py
+ login: admin
+
+- url: .*
+ script: gaehandler.py
+ secure: optional
+
+skip_files: |
+ ^(.*/)?(
+ (app\.yaml)|
+ (app\.yml)|
+ (index\.yaml)|
+ (index\.yml)|
+ (#.*#)|
+ (.*~)|
+ (.*\.py[co])|
+ (.*/RCS/.*)|
+ (\..*)|
+ ((admin|examples|welcome)\.tar)|
+ (applications/(admin|examples)/.*)|
+ (applications/.*?/databases/.*) |
+ (applications/.*?/errors/.*)|
+ (applications/.*?/cache/.*)|
+ (applications/.*?/sessions/.*)|
+ )$