Revert "Run the website in python2.7 mode"
Can't use python2.7 mode without migrating to the "high-replication
datastore", and even though we don't have any data "migration" is a
pain.
This reverts commit e960e9bc9d
.
This commit is contained in:
parent
02bc76155d
commit
cc8e893257
|
@ -1,15 +1,14 @@
|
||||||
application: python-tornado
|
application: python-tornado
|
||||||
version: 2
|
version: 2
|
||||||
runtime: python27
|
runtime: python
|
||||||
threadsafe: yes
|
|
||||||
api_version: 1
|
api_version: 1
|
||||||
|
|
||||||
handlers:
|
handlers:
|
||||||
- url: /static/tornado-0.1.tar.gz
|
- url: /static/tornado-0.1.tar.gz
|
||||||
script: website.application
|
script: website.py
|
||||||
|
|
||||||
- url: /static/tornado-0.2.tar.gz
|
- url: /static/tornado-0.2.tar.gz
|
||||||
script: website.application
|
script: website.py
|
||||||
|
|
||||||
- url: /static/
|
- url: /static/
|
||||||
static_dir: static
|
static_dir: static
|
||||||
|
@ -23,10 +22,10 @@ handlers:
|
||||||
upload: static/favicon.ico
|
upload: static/favicon.ico
|
||||||
|
|
||||||
- url: /documentation/?
|
- url: /documentation/?
|
||||||
script: website.application
|
script: website.py
|
||||||
|
|
||||||
- url: /documentation
|
- url: /documentation
|
||||||
static_dir: sphinx/build/html
|
static_dir: sphinx/build/html
|
||||||
|
|
||||||
- url: /.*
|
- url: /.*
|
||||||
script: website.application
|
script: website.py
|
||||||
|
|
Loading…
Reference in New Issue