-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
app.yaml
54 lines (47 loc) · 1.33 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
runtime: python27
threadsafe: true
api_version: 1
libraries:
- name: grpcio
version: "1.0.0"
handlers:
# redirect Sphinx extension
# request /static/live-filename
- url: /static/live-(.*)\.css
static_files: static/sympy-live/css/live-\1.css
upload: static/(.*)
secure: always
- url: /static/live-(.*)\.js
static_files: static/sympy-live/javascript/live-\1.js
upload: static/(.*)
secure: always
- url: /static/external/classy\.js
static_files: static/external/javascript/classy.js
upload: static/(.*)
secure: always
- url: /static/utilities\.js
static_files: static/sympy-live/javascript/utilities.js
upload: static/(.*)
secure: always
- url: /static
static_dir: static
expiration: 1d
secure: always
- url: /google5acf6d2992c8237d.html
static_files: google5acf6d2992c8237d.html
upload: google5acf6d2992c8237d.html
secure: always
# cache-busting scheme
# request /static-(app version)/filename
- url: /static-[0-9a-zA-Z-_]+/(.*)
static_files: static/\1
upload: static/(.*)
secure: always
# if you're adding the shell to your own app, change this regex url to the URL
# endpoint where you want the shell to run, e.g. /shell . You'll also probably
# want to add login: admin to restrict to admins only.
- url: .*
script: app.entrypoint.application
secure: always
env_variables:
PROJECT_ID: "sympy-live-hrd"