-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
48 lines (37 loc) · 1.04 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
application: practical-well-728
version: 1
runtime: python27
api_version: 1
threadsafe: true
handlers:
- url: /admin
static_dir: admin
#- url: /dashboard/dashboard
# static_dir: dashboard/dashboard
- url: /dashboard
static_files: dashboard/build/web/dashboard.html
upload: dashboard/*
- url: /packages/(.*)
static_files: dashboard/build/web/packages/\1
upload: dashboard/*
- url: /dashboard.css
static_files: dashboard/build/web/dashboard.css
upload: dashboard/*
- url: /dashboard.dart.js
static_files: dashboard/build/web/dashboard.dart.js
upload: dashboard/*
- url: /dashboard.dart.js.map
static_files: dashboard/build/web/dashboard.dart.js.map
upload: dashboard/*
- url: /imgs/(.*)
static_files: dashboard/build/web/imgs/\1
upload: dashboard/*
- url: /generateLeaderboard
script: main.app
# This handler routes requests to your APIs to your Endpoints code.
# See https://developers.google.com/appengine/docs/python/endpoints/
- url: /_ah/spi/.*
script: backend.cdh_api.APPLICATION
libraries:
- name: endpoints
version: 1.0