forked from googlearchive/appengine-angular-seed-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.yaml
More file actions
32 lines (26 loc) · 719 Bytes
/
app.yaml
File metadata and controls
32 lines (26 loc) · 719 Bytes
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
application: your-app-id
version: 1
runtime: python27
threadsafe: true
api_version: 1
default_expiration: "10m"
handlers:
- url: /favicon\.ico
static_files: favicon.ico
upload: favicon\.ico
- url: (.*)/
static_files: angular-seed/app\1/index.html
upload: angular-seed/app/index\.html
mime_type: text/html; charset=utf-8
- url: (/.*\.css)
static_files: angular-seed/app\1
upload: angular-seed/app/.*\.css
mime_type: text/css; charset=utf-8
- url: (/.*\.html)
static_files: angular-seed/app\1
upload: angular-seed/app/.*\.html
mime_type: text/html; charset=utf-8
- url: (/.*\.js)
static_files: angular-seed/app\1
upload: angular-seed/app/.*\.js
mime_type: text/javascript; charset=utf-8