From 6135eb674f0bce3bef6e41ed921f097288150a63 Mon Sep 17 00:00:00 2001 From: Ryan Petrello Date: Sat, 12 Mar 2011 16:34:59 -0500 Subject: [PATCH] Goodbye, start.py. --- docs/source/quick_start.rst | 2 -- pecan/templates/project/+package+/templates/index.html | 2 +- pecan/templates/project/start.py | 4 ---- 3 files changed, 1 insertion(+), 7 deletions(-) delete mode 100644 pecan/templates/project/start.py diff --git a/docs/source/quick_start.rst b/docs/source/quick_start.rst index 9123485..306237d 100644 --- a/docs/source/quick_start.rst +++ b/docs/source/quick_start.rst @@ -63,7 +63,6 @@ This is how it looks like when we run the whole command:: Recursing into javascript Creating ./test_project/public/javascript/ Copying shared.js to ./test_project/public/javascript/shared.js - Copying start.py_tmpl to ./test_project/start.py This is how the structure of your new project should look like:: @@ -76,7 +75,6 @@ This is how the structure of your new project should look like:: │   └── javascript │   └── shared.js ├── setup.py - ├── start.py ├── test_project │   ├── __init__.py │   ├── app.py diff --git a/pecan/templates/project/+package+/templates/index.html b/pecan/templates/project/+package+/templates/index.html index 8795e89..1b7a845 100644 --- a/pecan/templates/project/+package+/templates/index.html +++ b/pecan/templates/project/+package+/templates/index.html @@ -18,7 +18,7 @@

- Note that most functionality is enabled/disabled in your start.py, + Note that most functionality is enabled/disabled in your app.py, which can be edited to suit your needs, and to add additional WSGI middleware.

diff --git a/pecan/templates/project/start.py b/pecan/templates/project/start.py deleted file mode 100644 index 45ff2c6..0000000 --- a/pecan/templates/project/start.py +++ /dev/null @@ -1,4 +0,0 @@ -from pecan.commands import CommandRunner - -if __name__ == '__main__': - CommandRunner.handle_command_line()