So, you want to do some contribution for iPeer project. Just follow the following steps to make your own local development environment. 1. Get a !GitHub Account from https://github.com. 2. Install Git on your local computer. * Mac: http://help.github.com/mac-set-up-git/ * Linux: http://help.github.com/linux-set-up-git/ * Windows: http://help.github.com/win-set-up-git/ 3. Fork the iPeer project (https://github.com/ubc/iPeer) into your account and clone the code from your forked repo: http://help.github.com/fork-a-repo/ 4. Additional steps to set up * Pull the Guard plugin. {{{ cd ipeer git submodule init git submodule update }}} 5. Setup [wiki:CodingStandard coding standard] 6. Starting developing~ 7. Once you finished, you can issue a pull request so that we can merge your changes to the iPeer repo. http://help.github.com/send-pull-requests/ See, that's not very hard. == Debugging == === For version 2.x === To turn on debug mode, change the line in file app/config/core.php from: {{{ define('DEBUG', 0); }}} to {{{ define('DEBUG', 2); }}} === For version 3.x === To turn on debug mode, change the line in file app/config/core.php from: {{{ Configure::write('debug', 0); }}} to {{{ Configure::write('debug', 2); }}}