-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.yaml
53 lines (37 loc) · 982 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
application: sresgurukul
version: 1
runtime: python
api_version: 1
handlers:
- url: /stylesheets
static_dir: stylesheets
- url: /images
static_dir: images
- url: /js
static_dir: js
- url: /(gurukulHome|newSubdomain|allServiceInfo|happyCustomers|appPhotoGallery|talkToDevelopers)\.html
script: mainNav.py
- url: /(collegeHome|staff|deapartments|photos|notices|knowus)\.html
script: collegeNav.py
- url: /logout\.logout
script: logout.py
- url: /(seller)\.(show|add|update|updateShow)
script: seller.py
- url: /seller\.login
script: sellerLogin.py
- url: /(owner)\.(show|add|update|updateShow)
script: owner.py
- url: /owner\.login
script: ownerLogin.py
- url: /(admin)\.(show|add|update|updateShow)
script: admin.py
- url: /admin\.login
script: adminLogin.py
- url: /(incharge)\.(show|add|update|updateShow)
script: incharge.py
- url: /incharge\.login
script: inchargeLogin.py
- url: /.*
script: mainNav.py
builtins:
- remote_api: on