forked from code4romania/redirectioneaza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml.example
73 lines (61 loc) · 1.25 KB
/
app.yaml.example
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# application: redirectioneaza
runtime: python27
api_version: 1
threadsafe: false
automatic_scaling:
max_concurrent_requests: 60
max_pending_latency: 8s
min_pending_latency: 6s
libraries:
- name: webapp2
version: "2.5.2"
- name: jinja2
version: latest
skip_files:
# the default rules
- ^(.*/)?#.*#$
- ^(.*/)?.*~$
- ^(.*/)?.*\.py[co]$
- ^(.*/)?.*/RCS/.*$
- ^(.*/)?\..*$
# new files to skip
- ^.*db$
- ^(.*/)?.*\.less$
- ^.*sublime.*$
- ^blobs\/.*$
# - ^bower_components\/.*$
- ^node_modules\/.*$
- ^lib/lxml\/.*$
- ^modules\/live-editor\/.*$
- ^modules\/brackets\/(?!dist).*$
- app.yaml.example
handlers:
# - url: /favicon\.ico
# static_files: favicon.ico
# upload: favicon\.ico
- url: /css
mime_type: "text/css"
static_dir: static/css
- url: /images
static_dir: static/images
application_readable: true
- url: /js
static_dir: static/js
- url: /font
application_readable: true
static_dir: static/font
# bower components url
- url: /bower_components
static_dir: bower_components
- url: /robots.txt
static_files: robots.txt
upload: robots.txt
- url: /.*
script: main.app
secure: always
env_variables:
BUCKET_NAME: "redirectioneaza"
SENDGRID_API_KEY: ""
SESSION_SECRET_KEY: ""
CAPTCHA_PUBLIC_KEY: ""
CAPTCHA_PRIVATE_KEY: ""