Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ShinNoNoir committed Sep 27, 2011
0 parents commit c39a296
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*~
.project
.pydevproject
Empty file added README
Empty file.
3 changes: 3 additions & 0 deletions dotcloud.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
www:
type: python
approot: .
7 changes: 7 additions & 0 deletions wsgi.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
def application(environ, start_response):
status = '200 OK'
response_headers = [('Content-type', 'text/plain')]
start_response(status, response_headers)
return ['Hello world!\n'] + ['{0}={1}\n'.format(k,environ[k])
for k in sorted(environ)]

0 comments on commit c39a296

Please sign in to comment.