Skip to content
rajeefmk edited this page Apr 8, 2014 · 8 revisions

install git :http://gitimmersion.com

mkdir ~/work cd work git clone https://github.com/Jaaga/crowdfund-scholarships.git

to clone this repository in the work directory.

Go through the steps here to get LAMP set up. http://www.howtoforge.com/installing-apache2-with-php5-and-mysql-support-on-ubuntu-12.10-lamp

Change the document root of your apache installation to the folder where you have the repository installed locally. For me this is /home/freeman/work/crowdfund-scholarships http://www.ajopaul.com/2010/05/01/ubuntu-apache2-change-default-documentroot-varwww/ /* this has changed slightly since ubuntu 13.10.

  • this is my /etc/apache2/sites-available/jaaga-study.conf */

    Listen 8080 <VirtualHost *:8080> DocumentRoot /home/freeman/work/crowdfund-scholarships/public <Directory /> Require all granted </Directory> </VirtualHost>

/*********/ we need to create the database ****/

cd db mysql -u root < LearnEmp.sql


then we're pretty much set up.

##Alternate Simplified links

https://www.atlassian.com/git/