| 1 | After installing Python: |
| 2 | |
| 3 | == Install Web2Py == |
| 4 | As 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 | {{{ |
| 6 | bzr branch lp:~mdipierro/web2py/devel web2py |
| 7 | }}} |
| 8 | |
| 9 | There are occasional issues with the latest Trunk, so you may need to try a slightly older revision. |
| 10 | {{{ |
| 11 | cd web2py |
| 12 | bzr revno |
| 13 | bzr revert -r <earlier revision> |
| 14 | }}} |
| 15 | |
| 16 | == Install Sahana == |
| 17 | As a Developer, you should generally run the Trunk version of Sahana, so that you can submit patches against the latest code: |
| 18 | {{{ |
| 19 | cd web2py/applications |
| 20 | bzr branch lp:sahana-eden eden |
| 21 | }}} |
| 22 | |
| 23 | NB 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 == |
| 26 | If you want a graphical debugger to set breakpoints & step through code then it is recommended to install Eclipse: |
| 27 | * DeveloperGuidelinesEclipse |
| 28 | |
| 29 | == Developer Guidelines == |
| 30 | Now, see how to put your installation to work: |
| 31 | * DeveloperGuidelines |