diff options
| author | Joshua Gourneau <josh@gourneau.com> | 2012-03-15 00:48:11 -0700 |
|---|---|---|
| committer | Joshua Gourneau <josh@gourneau.com> | 2012-03-15 00:48:11 -0700 |
| commit | f9f756467e771e4520fe7fa20aa92b3ef9936569 (patch) | |
| tree | 8af3bd8187210665c14e84bf5a54f482732187c2 | |
| parent | 1af3fadf261e0e89feff6835ce69472853fa2aa3 (diff) | |
gae
| -rw-r--r-- | app.py | 3 | ||||
| -rw-r--r-- | app.yaml | 12 | ||||
| -rw-r--r-- | favicon.ico | bin | 0 -> 1150 bytes | |||
| -rw-r--r-- | index.yaml | 11 |
4 files changed, 25 insertions, 1 deletions
@@ -41,4 +41,5 @@ def sig(): r = requests.put(url, auth=CLOUDANT_AUTH, data=json.dumps(data), headers=headers) redirect('/s/%s' % json.loads(r.content)['id']) -run(host='localhost', port=8000) +#run(host='localhost', port=8000) +run(server='gae') diff --git a/app.yaml b/app.yaml new file mode 100644 index 0000000..ed81e27 --- /dev/null +++ b/app.yaml @@ -0,0 +1,12 @@ +application: pinkyswearapp +version: 1 +runtime: python27 +api_version: 1 +threadsafe: false + +handlers: +- url: /js + static_dir: static + +- url: /.* + script: app.py
\ No newline at end of file diff --git a/favicon.ico b/favicon.ico Binary files differnew file mode 100644 index 0000000..0062ab4 --- /dev/null +++ b/favicon.ico diff --git a/index.yaml b/index.yaml new file mode 100644 index 0000000..a3b9e05 --- /dev/null +++ b/index.yaml @@ -0,0 +1,11 @@ +indexes: + +# AUTOGENERATED + +# This index.yaml is automatically updated whenever the dev_appserver +# detects that a new type of query is run. If you want to manage the +# index.yaml file manually, remove the above marker line (the line +# saying "# AUTOGENERATED"). If you want to manage some indexes +# manually, move them above the marker line. The index.yaml file is +# automatically uploaded to the admin console when you next deploy +# your application using appcfg.py. |
