Changes between Version 6 and Version 7 of InstallationGuidelines/Developer/PostPython
- Timestamp:
- 01/06/12 21:36:15 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallationGuidelines/Developer/PostPython
v6 v7 4 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 5 {{{ 6 bzr branch lp:~mdipierro/web2py/devel web2py 6 git clone git://github.com/mdipierro/web2py.git 7 7 }}} 8 8 … … 10 10 {{{ 11 11 cd web2py 12 bzr revno 13 bzr revert -r <earlier revision>12 git log 13 git checkout <hash> 14 14 }}} 15 "git log" shows you a log including the hash-value of every revesion. Checkout sets your working-copy to the revision with the specified hash-value. 15 16 16 If you have a slow internet connection, then {{{bzr branch}}} of Web2Py may take a long time (640Mb). If you wish to get started more quickly, you can do a "lightweight checkout", which does not provide the revision history and so cannot be used to either rollback to earlier versions or updated to newer ones: 17 {{{ 18 bzr checkout --lightweight lp:~mdipierro/web2py/devel web2py 19 }}} 17 20 18 == Install Eden == 21 19 As a Developer, you should generally run the Trunk version of Eden, so that you can submit patches against the latest code: 22 20 {{{ 23 21 cd web2py/applications 24 bzr branch lp:sahana-eden eden 22 git clone https://github.com/flavour/eden.git 25 23 }}} 26 24