Changes between Version 2 and Version 3 of InstallationGuidelines/Windows/Developer/Manual


Ignore:
Timestamp:
10/22/11 05:33:23 (13 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • InstallationGuidelines/Windows/Developer/Manual

    v2 v3  
    3333 * [wiki:InstallationGuidelinesMySQL#InstallPythonsupportforMySQL MySQL for Python]
    3434 * [wiki:InstallationGuidelinesPostgreSQL#InstallPostgreSQL PostgreSQL for Python]
     35
     36== Install Bzr ==
     37We use the [http://wiki.bazaar.canonical.com/ Bazaar] Distributed Version Control System
     38Several downloads are [http://wiki.bazaar.canonical.com/WindowsDownloads available], but we recommend using the Python Installer:
     39 * http://launchpad.net/bzr/2.4/2.4.1/+download/bzr-2.4.1-1.win32-py2.7.exe
     40
     41== Install Web2Py ==
     42As 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.
     43{{{
     44bzr branch
     45}}}
     46
     47There are occasional issues with the latest Trunk, so you may need to try a slightly older revision.
     48{{{
     49cd web2py
     50bzr revert -r <revision>
     51}}}
     52
     53== Install Sahana ==
     54As a Developer, you should generally run the Trunk version of Web2Py, so that you can submit patches against the latest code:
     55{{{
     56cd web2py/applications
     57bzr branch lp:sahana-eden eden
     58}}}
     59
     60NB Note the fact that we ensure that the name of the web2py application has no hyphen in, as otherwise it cannot run!