diff --git a/.gitignore b/.gitignore index 5315878..0137f28 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ *~ aclocal.m4 autom4te.cache +*.bz2 compile config.* configure diff --git a/web/app.yaml b/web/app.yaml new file mode 100644 index 0000000..dc9bb51 --- /dev/null +++ b/web/app.yaml @@ -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 diff --git a/web/favicon.ico b/web/favicon.ico new file mode 100644 index 0000000..6ac21ce Binary files /dev/null and b/web/favicon.ico differ diff --git a/web/index.html b/web/index.html new file mode 100644 index 0000000..cd08755 --- /dev/null +++ b/web/index.html @@ -0,0 +1 @@ +Hello world! diff --git a/web/robots.txt b/web/robots.txt new file mode 100644 index 0000000..eb05362 --- /dev/null +++ b/web/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: diff --git a/web/upload b/web/upload new file mode 100755 index 0000000..095cca8 --- /dev/null +++ b/web/upload @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +/opt/google-appengine/appcfg.py --email=alexander@kojevnikov.com update `dirname $0`