spek

Acoustic spectrum analyser
git clone http://git.hanabi.in/repos/spek.git
Log | Files | Refs | README

commit 80b2a25f0253aecf64b549f1db4685fa90d60997
parent 60324c1750d8a2805102a0ce3ecc21b0861e5a00
Author: Alexander Kojevnikov <alexander@kojevnikov.com>
Date:   Sat,  8 May 2010 22:31:00 +1000

Add a skeleton app-engine website

Diffstat:
M.gitignore | 1+
Aweb/app.yaml | 25+++++++++++++++++++++++++
Aweb/favicon.ico | 0
Aweb/index.html | 1+
Aweb/robots.txt | 2++
Aweb/upload | 3+++
6 files changed, 32 insertions(+), 0 deletions(-)

diff --git 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 @@ -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 Binary files differ. diff --git a/web/index.html b/web/index.html @@ -0,0 +1 @@ +Hello world! diff --git a/web/robots.txt b/web/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: diff --git a/web/upload b/web/upload @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +/opt/google-appengine/appcfg.py --email=alexander@kojevnikov.com update `dirname $0`