[Checkins] SVN: bluebream/trunk/docs/source/tutorial.rst Finish "Starting new project" section

Baiju M baiju.m.mail at gmail.com
Sat Jan 9 22:49:42 EST 2010


Log message for revision 107973:
  Finish "Starting new project" section
  

Changed:
  U   bluebream/trunk/docs/source/tutorial.rst

-=-
Modified: bluebream/trunk/docs/source/tutorial.rst
===================================================================
--- bluebream/trunk/docs/source/tutorial.rst	2010-01-10 03:31:48 UTC (rev 107972)
+++ bluebream/trunk/docs/source/tutorial.rst	2010-01-10 03:49:41 UTC (rev 107973)
@@ -148,7 +148,29 @@
 - The ``develop-eggs`` directory is where buildout save links to all
   locally develping Python eggs.
 
+Now you are ready to run the ``bin/buildout`` to build the
+application.  It will show something like this::
 
+  jack at computer:/projects/ticketcollector$ ./bin/buildout 
+  Develop: '/projects/ticketcollector/.'
+  Installing app.
+  Generated script '/projects/ticketcollector/bin/paster'.
+  Generated interpreter '/projects/ticketcollector/bin/python'.
+  Installing zope_conf.
+  Installing test.
+  Generated script '/projects/ticketcollector/bin/test'.
+
+In the above example, all eggs are already available in the eggs
+folder, otherwise it will download and install eggs.  The buildout
+also created three more scripts inside ``bin`` directory.
+
+- The ``paster`` command can be used to run webserver.
+
+- The ``python`` command provides a custom Python interpreter with
+  all eggs included in path.
+
+- The ``test`` command can be used to run the test runner.  
+
 Creating the application object
 -------------------------------
 



More information about the checkins mailing list