Changes between Version 6 and Version 7 of SetupDev


Ignore:
Timestamp:
2012-08-30T18:52:22Z (12 years ago)
Author:
michael
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SetupDev

    v6 v7  
    11So, you want to do some contribution for iPeer project. Just follow the following steps to make your own local development environment.
    22
     3=== For External Developers and Contributers ===
    341. Get a !GitHub Account from https://github.com.
    452. Install Git on your local computer.
     
    17186. Starting developing~
    18197. 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/
     20
     21=== For Internal Developers and Contributers ===
     221. Follow steps 1 and 2 for External Developers and Contribuers above
     232. Follow the steps in https://help.github.com/articles/generating-ssh-keys to generate a ssh key for your github account
     243. Clone the code
     25{{{
     26git clone git@github.com:ubc/iPeer.git
     27}}}
     284. Additional steps to set up. Pull the Guard plugin.
     29{{{
     30cd ipeer
     31git checkout cakephp1.3
     32git submodule init
     33git submodule update
     34}}}
     355. (XAMPP) go to xampp/htdocs/app/plugins/guard/config, open guard.php. You will have to do something similar if you are using any other web server.
     36* Make the following changes
     37{{{
     38//$config['Guard.AuthModule.Name'] = 'Shibboleth';    // Using Shibboleth module
     39$config['Guard.AuthModule.Name'] = 'Default';     // Using default (build-in) module
     40}}}
     41* Copy guard.php to xampp/htdocs/app/config
    1942
    2043See, that's not very hard.