-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
41 lines (39 loc) · 1.54 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
# -----------------------------------------------------------------------------
# application - this is the name of the application
# -----------------------------------------------------------------------------
application: dogwalker
# -----------------------------------------
# the version of the application we create
# -----------------------------------------
version: 1
# -----------------------------------------
# programming language
# -----------------------------------------
runtime: python27
# -----------------------------------------
# python sub version
# -----------------------------------------
api_version: 1
# ---------------------------------------------------------------------
# threadsafe - to prevent collision between calls to the application
# from different clients
# ---------------------------------------------------------------------
threadsafe: true
# ---------------------------------------------------------------------
# handlers - define an application file for each URL we get
# add a static directory /stylesheets
# we will place all our css files inside it
# ---------------------------------------------------------------------
handlers:
- url: /stylesheets
static_dir: stylesheets
- url: /.*
script: main.app
# ---------------------------------------------------------------------
# libraries in use - jinja2(latest version)
# ---------------------------------------------------------------------
libraries:
- name: jinja2
version: latest
- name: MySQLdb
version: latest