goa/skel/app.yaml.tmpl
changeset 0 b97547f5f1fa
child 3 512e9bd0685a
equal deleted inserted replaced
-1:000000000000 0:b97547f5f1fa
       
     1 application: %(appname)s
       
     2 version: 0-1
       
     3 runtime: python
       
     4 api_version: 1
       
     5 
       
     6 handlers:
       
     7 - url: /admin/.*
       
     8   script: $PYTHON_LIB/google/appengine/ext/admin
       
     9   login: admin
       
    10 - url: /data
       
    11   static_dir: data
       
    12 - url: /fckeditor
       
    13   static_dir: fckeditor
       
    14 - url: /_load
       
    15   script: loader.py
       
    16   login: admin
       
    17 - url: .*
       
    18   script: main.py
       
    19   # comment the line below to allow anonymous access or if you don't want to use
       
    20   # google authentication service
       
    21   login: required
       
    22 
       
    23 skip_files: |
       
    24  ^(.*/)?(
       
    25  (app\.yaml)|
       
    26  (app\.yml)|
       
    27  (index\.yaml)|
       
    28  (index\.yml)|
       
    29  (#.*#)|
       
    30  (.*~)|
       
    31  (.*\.py[co])|
       
    32  (.*\.xcf)|
       
    33  (.*\.asp)|
       
    34  (.*\.aspx)|
       
    35  (.*\.cfm)|
       
    36  (.*\.po)|
       
    37  (.*/RCS/.*)|
       
    38  (\..*)|
       
    39  (.*ChangeLog)|
       
    40  (.*README)|
       
    41  (.*TODO)|
       
    42  (.*DEPENDS)|
       
    43  (.*MANIFEST)|
       
    44  (.*MANIFEST.in)|
       
    45  (.*setup\.py)|
       
    46  (.*,cover)|
       
    47  (.*\.orig)|
       
    48  (.*/test/.*)|
       
    49  (.*/tests/.*)|
       
    50  (.*/bin/.*)|
       
    51  (.*/build/.*)|
       
    52  (.*/debian/.*)|
       
    53  (.*/doc/.*)|
       
    54  (.*/skins/office2003/.*)|
       
    55  (.*/editor/skins/silver/.*)|
       
    56  (.*/editor/filemanager/.*)|
       
    57  (.*/editor/plugins/.*)|
       
    58  (.*/editor/images/smiley/.*)|
       
    59  (.*/editor/.*spellerpages.*)|
       
    60  (.*/docutils/writers/s5_html/.*)|
       
    61  (.*/docutils/writers/latex2e/.*)|
       
    62  (.*/docutils/writers/newlatex2e/.*)|
       
    63  (.*/docutils/writers/pep_html/.*)|
       
    64  (bin/.*)|
       
    65  (tools/.*)|
       
    66  (cubicweb.*/data/.*\.js)|
       
    67  (cubicweb.*/data/.*\.css)|
       
    68  (cubicweb.*/data/.*\.png)|
       
    69  (cubicweb.*/data/.*\.gif)|
       
    70  (cubicweb.*/data/.*\.gif)|
       
    71  )$
       
    72