Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/app.yaml
diff options
context:
space:
mode:
authorJames Boisture <jboisture@jboisture-laptop.(none)>2010-07-29 18:05:01 (GMT)
committer James Boisture <jboisture@jboisture-laptop.(none)>2010-07-29 18:05:01 (GMT)
commit09e3eea7a72e9e2300b639f0356100c7b83b5dfb (patch)
treed3608997517daa0ae5f98e5bf5ba95c8e29520b9 /app.yaml
parentb817158f554f7b3342ecfe3ce24d04e91abed3c3 (diff)
made a lot of major changes because it has been a long time since I commited last. There are many new features. Also added app.yaml file which should be placed in the web2py directly in order for the URL to work properly.
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/.*)|
+ )$