Created
December 28, 2015 16:52
-
-
Save jdkanani/7b8f9921431e95e67d40 to your computer and use it in GitHub Desktop.
Static google app engine config file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
application: static-doc | |
version: 1 | |
runtime: python27 | |
api_version: 1 | |
threadsafe: yes | |
handlers: | |
- url: /(.+) | |
static_files: public/\1 | |
upload: public/(.*) | |
- url: / | |
static_files: public/index.html | |
upload: public/index.html | |
skip_files: | |
- ^(.*/)?app\.yaml | |
- ^(.*/)?app\.yml | |
- ^(.*/)?#.*# | |
- ^(.*/)?.*~ | |
- ^(.*/)?.*\.py[co] | |
- ^(.*/)?.*/RCS/.* | |
- ^(.*/)?\..* | |
- ^(.*/)?tests$ | |
- ^(.*/)?test$ | |
- ^test/(.*/)? | |
- ^COPYING.LESSER | |
- ^README\..* | |
- \.gitignore | |
- ^\.git/.* | |
- \.*\.lint$ | |
- ^fabfile\.py | |
- ^testrunner\.py | |
- ^grunt\.js | |
- ^node_modules/(.*/)? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment