Skip to content

Commit

Permalink
Run the website in python2.7 mode
Browse files Browse the repository at this point in the history
  • Loading branch information
bdarnell committed Jan 30, 2012
1 parent 1910ea1 commit e960e9b
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions website/app.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
application: python-tornado
version: 2
runtime: python
runtime: python27
threadsafe: yes
api_version: 1

handlers:
- url: /static/tornado-0.1.tar.gz
script: website.py
script: website.application

- url: /static/tornado-0.2.tar.gz
script: website.py
script: website.application

- url: /static/
static_dir: static
Expand All @@ -22,10 +23,10 @@ handlers:
upload: static/favicon.ico

- url: /documentation/?
script: website.py
script: website.application

- url: /documentation
static_dir: sphinx/build/html

- url: /.*
script: website.py
script: website.application

0 comments on commit e960e9b

Please sign in to comment.