Changes between Version 33 and Version 34 of InstallationGuidelines/Developer/PostPython


Ignore:
Timestamp:
09/13/17 17:35:02 (7 years ago)
Author:
hassan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallationGuidelines/Developer/PostPython

    v33 v34  
    33
    44== Install Web2Py ==
    5 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:
    65{{{
    76git clone https://github.com/web2py/web2py.git --recursive
    87}}}
    9 ,,'''Note''': HTTPS clones are not read-only (while git:// clones are). They will NOT work if your git is not configured as previously described.
    108
    11 
    12 There are occasional issues with the latest Trunk, so you may need to try a slightly older revision. If this is needed, after downloading:
     9As of 2017-09-13 Sahana does not support web2py 2.15.* - you need to revert to web2py-2.14.6.
    1310{{{
    1411cd web2py
    15 git log
    16 git checkout <hash>
     12git reset --hard cda35fd
     13git submodule update
    1714}}}
    18 "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.
    1915
    2016