forked from pavgup/ubertool_cts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.yaml
62 lines (55 loc) · 1.16 KB
/
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
54
55
56
57
58
59
60
61
62
application: ubertool-cts
version: master
runtime: python27
api_version: 1
threadsafe: true
libraries:
- name: numpy
version: latest
- name: django
version: "1.5"
- name: PIL
version: latest
- name: matplotlib
version: latest
- name: ssl
version: "latest"
builtins:
- django_wsgi: on
env_variables:
UBERTOOL_BATCH_SERVER: 'http://uberrest-topknotmeadows.rhcloud.com/'
UBERTOOL_MONGO_SERVER: 'http://uberrest-topknotmeadows.rhcloud.com'
UBERTOOL_SECURE_SERVER: 'http://uberrest-topknotmeadows.rhcloud.com'
# UBERTOOL_REST_SERVER: 'http://localhost:80'
UBERTOOL_REST_SERVER: 'http://54.83.18.251:80'
CTS_JCHEM_SERVER: 'http://134.67.114.2'
PROJECT_PATH: ''
skip_files:
- ^(.*/)?app\.yaml
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^(.*/)?#.*#
- ^(.*/)?.*~
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*/RCS/.*
- ^(.*/)?\..*
- ^(.*/)?.*\.gz
- ^(.*/)?.*\.aux
- ^(.*/)?.*\.xcf
- ^(.*/)?.*\.log
- ^(.*/)?.*\.rst
- ^(.*/)?.*\.doctree
- ^(.*/)?.*\.php
- ^(.*/)?.*\.bak
- ^(.*/)?.*\.inc
- ^(.*/)?.*\.dark
- ^(.*/)?.*\.nofill
- ^(.*/)?.*\.SDR
- ^(.*/)?.*\MIT-LICENSE
- ^(.*/)?.*\LGPL-LICENSE
handlers:
- url: /static
static_dir: static
- url: /.*
script: wsgi.app