Changes between Initial Version and Version 1 of InstallationGuidelines/Developer/PostPython


Ignore:
Timestamp:
10/22/11 06:26:24 (13 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallationGuidelines/Developer/PostPython

    v1 v1  
     1After installing Python:
     2
     3== Install Web2Py ==
     4As a Developer, it is best to run the Trunk version of Web2Py, so that you can fine-tune the version that you have installed & get involved with the Web2Py developer community.
     5{{{
     6bzr branch lp:~mdipierro/web2py/devel web2py
     7}}}
     8
     9There are occasional issues with the latest Trunk, so you may need to try a slightly older revision.
     10{{{
     11cd web2py
     12bzr revno
     13bzr revert -r <earlier revision>
     14}}}
     15
     16== Install Sahana ==
     17As a Developer, you should generally run the Trunk version of Sahana, so that you can submit patches against the latest code:
     18{{{
     19cd web2py/applications
     20bzr branch lp:sahana-eden eden
     21}}}
     22
     23NB Note the fact that we ensure that the name of the web2py application has no hyphen in, as otherwise it cannot run!
     24
     25== Install Eclipse ==
     26If you want a graphical debugger to set breakpoints & step through code then it is recommended to install Eclipse:
     27 * DeveloperGuidelinesEclipse
     28
     29== Developer Guidelines ==
     30Now, see how to put your installation to work:
     31 * DeveloperGuidelines