Permalink
Cannot retrieve contributors at this time
# Copyright 2009 - 2013 Felix E. Klee <felix.klee@inka.de> | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); you may not | |
# use this file except in compliance with the License. You may obtain a copy of | |
# the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | |
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | |
# License for the specific language governing permissions and limitations under | |
# the License. | |
application: rotogame-hrd | |
version: 1 | |
runtime: python27 | |
api_version: 1 | |
threadsafe: false # because: "threadsafe cannot be enabled with CGI handler: | |
# main.py" | |
libraries: | |
- name: django | |
version: "1.2" | |
handlers: | |
- url: /javascript | |
static_dir: javascript | |
- url: /stylesheets | |
static_dir: stylesheets | |
- url: /favicon.ico | |
static_files: images/favicon.ico | |
upload: images/favicon.ico | |
- url: /images | |
static_dir: images | |
- url: /json/.* | |
script: main.py | |
- url: /admin/.* | |
script: main.py | |
login: admin | |
# For development/debugging. | |
- url: /source | |
static_dir: source | |
- url: /.* | |
script: main.py | |
builtins: | |
- remote_api: on | |
skip_files: | |
- ^(.*/)?app\.yaml | |
- ^(.*/)?app\.yml | |
- ^(.*/)?index\.yaml | |
- ^(.*/)?index\.yml | |
- ^(.*/)?#.*# | |
- ^(.*/)?.*~ | |
- ^(.*/)?.*\.py[co] | |
- ^(.*/)?.*/RCS/.* | |
- ^(.*/)?\..* | |
- ^(.*/)?.*\.bak$ | |
- ^source$ | |
- ^LICENSE$ | |
- ^NOTICE$ | |
- ^README$ |