-
Notifications
You must be signed in to change notification settings - Fork 10
/
app.yaml
36 lines (34 loc) · 825 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
application: ipsumimage-hrd
version: 2-2-7
runtime: python27
threadsafe: true
api_version: 1
handlers:
- url: /
static_files: static/index.html
upload: static/index.html
- url: /style.css
static_files: static/style.css
upload: static/style.css
- url: /test
static_files: static/test.html
upload: static/test.html
- url: /about
static_files: static/about.html
upload: static/about.html
- url: /robots.txt
static_files: static/robots.txt
upload: static/robots.txt
- url: /favicon.ico
static_files: static/images/favicon.ico
upload: static/images/favicon.ico
- url: /google96f127342fdae2a8.html
static_files: static/google96f127342fdae2a8.html
upload: static/google96f127342fdae2a8.html
- url: .*
script: main.application
libraries:
- name: django
version: "1.3"
- name: PIL
version: "1.1.7"