-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
45 lines (39 loc) · 801 Bytes
/
app.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
application: yourappname
version: boilerplate
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /css
static_dir: static/css
- url: /js
static_dir: static/js
- url: /img
static_dir: static/img
- url: /.*
script: main.app
libraries:
- name: jinja2
version: "2.6"
- name: webapp2
version: "2.5.2"
# Files to omit when dowloading source from AppEngine
# Note that .yaml files are omitted. These files don't get added
# to the server, but are used to configure the environment on deploy
skip_files:
- ^(.*/)?app\.yaml
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^(.*/)?#.*#
- ^(.*/)?.*~
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*/RCS/.*
- ^(.*/)?\..*
- ^(.*/)?.*\.sublime
- ^(.*/)?.*\.scss
- ^(.*/)?config\.rb
- ^_source
- ^(.*/)?readme\..
- \.gitignore
- ^\.git/.*