Skip to content

Commit d0db89c

Browse files
committedJan 15, 2015
Initial commit
0 parents  commit d0db89c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+15314
-0
lines changed
 

‎.gitignore

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Compiled source #
2+
###################
3+
*.com
4+
*.class
5+
*.dll
6+
*.exe
7+
*.o
8+
*.so
9+
10+
# Packages #
11+
############
12+
# it's better to unpack these files and commit the raw source
13+
# git has its own built in compression methods
14+
*.7z
15+
*.dmg
16+
*.gz
17+
*.iso
18+
*.jar
19+
*.rar
20+
*.tar
21+
*.zip
22+
23+
# Logs and databases #
24+
######################
25+
*.log
26+
*.sql
27+
*.sqlite
28+
29+
# OS generated files #
30+
######################
31+
.DS_Store
32+
.DS_Store?
33+
._*
34+
.Spotlight-V100
35+
.Trashes
36+
ehthumbs.db
37+
Thumbs.db
38+
39+
\SKIP*
40+
\text

‎app.yaml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
application: code-utils
2+
version: 8
3+
runtime: python27
4+
api_version: 1
5+
threadsafe: true
6+
skip_files: #these files are not uploaded to google
7+
- ^SKIP #skip files starting with skip
8+
handlers:
9+
- url: /_ereporter.*
10+
script: google.appengine.ext.ereporter.report_generator.application
11+
login: admin
12+
- url: /tasks/updates
13+
script: main.app
14+
login: admin
15+
- url: /stylesheets
16+
static_dir: static/css
17+
expiration : "365d"
18+
- url: /scripts
19+
static_dir: static/js
20+
expiration : "365d"
21+
- url: /images
22+
expiration : "365d"
23+
static_dir: static/img
24+
- url: /.*
25+
script: main.app
26+
27+
builtins:
28+
- deferred: on
29+
- appstats: on
30+
31+
libraries:
32+
- name: webapp2
33+
version: latest
34+
- name: jinja2
35+
version: latest

0 commit comments

Comments
 (0)
Please sign in to comment.