-
Notifications
You must be signed in to change notification settings - Fork 211
Expand file tree
/
Copy pathapp.yaml
More file actions
42 lines (35 loc) · 684 Bytes
/
app.yaml
File metadata and controls
42 lines (35 loc) · 684 Bytes
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
application: youtube-dl
version: 0-3
runtime: python27
api_version: 1
threadsafe: no
handlers:
- url: /api/.*
script: mainGAE.app
secure: optional
- url: /robots.txt
static_files: robots.txt
upload: robots.txt
- url: /.*
static_files: index.html
upload: index.html
libraries:
- name: ssl
version: latest
- name: jinja2
version: "2.6"
skip_files:
# Default values from https://developers.google.com/appengine/docs/python/config/appconfig#Python_app_yaml_Skipping_files
- ^(.*/)?#.*#$
- ^(.*/)?.*~$
- ^(.*/)?.*\.py[co]$
- ^(.*/)?.*/RCS/.*$
- ^(.*/)?\..*$
# Custom values
- ^VENV.*$
- ^.*\.egg.*$
- ^gae/VENV$
- ^dist/.*$
- ^docs/.*$
- ^test/.*$
- ^devscripts/.*$