forked from dataarts/virtual-art-sessions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
53 lines (46 loc) · 922 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
46
47
48
49
50
51
52
53
application: s~project-udon
version: master
runtime: python27
api_version: 1
threadsafe: true
default_expiration: "601s"
handlers:
- url: /_ah/(mapreduce|queue|warmup|internalupload).*
script: udon.wsgi.application
login: admin
secure: always
- url: /static/
static_dir: static/dist/
application_readable: true
secure: always
- url: /data/
static_dir: data/
secure: always
- url: /upload/
script: udon.wsgi.application
login: admin
secure: always
- url: /.*
script: udon.wsgi.application
secure: always
skip_files:
- manage.py
- README.md
- install_deps
- requirements.txt
- sitepackages/google_appengine*
- static/src*
- package.json
- bower.json
- node_modules
- bower_components
- gulp*
- scripts/*
- \.idea
- \.editorconfig
- \.eslintrc
- \.sass-lint.yml
- \.storage.*
- \.git
- (.*)\.pyc
- (.*).DS_Store