Skip to content

Commit a21fc62

Browse files
committed
added google app engine files
1 parent ad9fab9 commit a21fc62

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
lines changed

app.yaml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
application: astromount
2+
version: 1
3+
runtime: python
4+
api_version: 1
5+
6+
handlers:
7+
8+
- url: /favicon.ico
9+
static_files: hugomatic/web/stylesheets/img/favicon.ico
10+
upload: hugomatic/web/stylesheets/img/favicon.ico
11+
12+
- url: /images/(.*\.(gif|png|jpg))
13+
static_files: images/\1
14+
upload: images/(.*\.(gif|png|jpg))
15+
16+
- url: /hugomatic/web/stylesheets/img/(.*\.(gif|png|jpg))
17+
static_files: hugomatic/web/stylesheets/img/\1
18+
upload: hugomatic/web/stylesheets/img/(.*\.(gif|png|jpg))
19+
20+
- url: /hugomatic/web/stylesheets/(.*\.(css|js))
21+
static_files: hugomatic/web/stylesheets/\1
22+
upload: hugomatic/web/stylesheets/(.*\.(css|js))
23+
24+
- url: /hugomatic/web/stylesheets/jquery/(.*\.(css|js))
25+
static_files: hugomatic/web/stylesheets/jquery/\1
26+
upload: hugomatic/web/stylesheets/jquery/(.*\.(css|js))
27+
28+
- url: /hugomatic/web/stylesheets/jquery/images/(.*\.(gif|png|jpg))
29+
static_files: hugomatic/web/stylesheets/jquery/images/\1
30+
upload: hugomatic/web/stylesheets/jquery/images/(.*\.(gif|png|jpg))
31+
32+
- url: /(.*\.(py|html))
33+
script: /\1
34+
35+
- url: /
36+
script: /index.py
37+
38+
- url: /hugomatic/web/(.*\.(py|html))
39+
script: /hugomatic/web/\1

index.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
indexes:
2+
3+
# AUTOGENERATED
4+
5+
# This index.yaml is automatically updated whenever the dev_appserver
6+
# detects that a new type of query is run. If you want to manage the
7+
# index.yaml file manually, remove the above marker line (the line
8+
# saying "# AUTOGENERATED"). If you want to manage some indexes
9+
# manually, move them above the marker line. The index.yaml file is
10+
# automatically uploaded to the admin console when you next deploy
11+
# your application using appcfg.py.

0 commit comments

Comments
 (0)