Changes between Version 11 and Version 12 of InstallationGuidelines/Developer/PostPython
- Timestamp:
- 04/09/12 14:26:37 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallationGuidelines/Developer/PostPython
v11 v12 18 18 19 19 == Install Eden == 20 As a Developer, you should generally run the Trunk version of Eden, so that you can submit patches against the latest code: 20 21 === For Instant Development === 22 23 If you intend on developing the Sahana code base but do not intend on your changes making it back to the core (perhaps for a custom deployment) you can just clone the Trunk version of Eden: 24 21 25 {{{ 22 26 cd web2py/applications … … 24 28 }}} 25 29 26 NB Notethe fact that we ensure that the name of the web2py application has no hyphen in, as otherwise it cannot run under Apache!30 ,,'''Note''' the fact that we ensure that the name of the web2py application has no hyphen in, as otherwise it cannot run under Apache! 27 31 32 33 === For Long Term Development === 34 35 If you intend to develop for Sahana and have your code pulled into the core it is better to follow the [http://help.github.com/send-pull-requests/ GitHub Fork, Pull Request model], this is preferred over submitting patches. To do this: 36 37 1. [https://github.com/signup/free Create a free Git account ] 38 2. [http://help.github.com/linux-set-up-git/ Configure Git] 39 3. [http://help.github.com/fork-a-repo/ Fork Sahana] 40 4. [http://help.github.com/send-pull-requests/ Learn how to Pull Request your changes back into the core] 28 41 == Start Eden == 29 42