Changes between Version 6 and Version 7 of InstallationGuidelines/Developer/PostPython


Ignore:
Timestamp:
01/06/12 21:36:15 (13 years ago)
Author:
Daniel Klischies
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallationGuidelines/Developer/PostPython

    v6 v7  
    44As 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:
    55{{{
    6 bzr branch lp:~mdipierro/web2py/devel web2py
     6git clone git://github.com/mdipierro/web2py.git
    77}}}
    88
     
    1010{{{
    1111cd web2py
    12 bzr revno
    13 bzr revert -r <earlier revision>
     12git log
     13git checkout <hash>
    1414}}}
     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.
    1516
    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
    2018== Install Eden ==
    2119As a Developer, you should generally run the Trunk version of Eden, so that you can submit patches against the latest code:
    2220{{{
    2321cd web2py/applications
    24 bzr branch lp:sahana-eden eden
     22git clone https://github.com/flavour/eden.git
    2523}}}
    2624