Add a skeleton app-engine website

This commit is contained in:
Alexander Kojevnikov 2010-05-08 22:31:00 +10:00
parent 60324c1750
commit 80b2a25f02
6 changed files with 32 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,6 +1,7 @@
*~
aclocal.m4
autom4te.cache
*.bz2
compile
config.*
configure

25
web/app.yaml Normal file
View File

@ -0,0 +1,25 @@
application: spek-project
version: 1
runtime: python
api_version: 1
handlers:
- url: /favicon.ico
static_files: favicon.ico
upload: favicon.ico
mime_type: vnd.microsoft.icon
- url: /robots.txt
static_files: robots.txt
upload: robots.txt
mime_type: text/plain
- url: /
static_files: index.html
upload: index.html
mime_type: text/html
- url: /(.*).bz2
static_files: \1.bz2
upload: (.*).bz2
mime_type: application/x-bzip

BIN
web/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

1
web/index.html Normal file
View File

@ -0,0 +1 @@
Hello world!

2
web/robots.txt Normal file
View File

@ -0,0 +1,2 @@
User-agent: *
Disallow:

3
web/upload Executable file
View File

@ -0,0 +1,3 @@
#!/usr/bin/env bash
/opt/google-appengine/appcfg.py --email=alexander@kojevnikov.com update `dirname $0`