Goodbye, start.py.

This commit is contained in:
Ryan Petrello
2011-03-12 16:34:59 -05:00
parent 357f89e75b
commit 6135eb674f
3 changed files with 1 additions and 7 deletions

View File

@@ -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

View File

@@ -18,7 +18,7 @@
</ul>
<p>
Note that most functionality is enabled/disabled in your <code>start.py</code>,
Note that most functionality is enabled/disabled in your <code>app.py</code>,
which can be edited to suit your needs, and to add additional WSGI middleware.
</p>

View File

@@ -1,4 +0,0 @@
from pecan.commands import CommandRunner
if __name__ == '__main__':
CommandRunner.handle_command_line()