GETTING STARTED WITH LARAVEL
Hi guys, So if you are here then you made your mind to get started with laravel and that’s a good thing. Installing Laravel is not a straightforward process since it is not a zip package or installer to head start with. Below are steps we need to follow to setup laravel.
- Download XAMPP
- Create GITHUB Account and Setup git on your local machine
- Install Composer
- Clone Laravel 4
- Create a test database
- That’s it run it now
Feel free to jump video sections if you have already did it .
Below you can find some code snips from video
Download XAMPP
<a class="vglnk" href="http://www.apachefriends.org/en/index.html" rel="nofollow"><span>http</span><span>://</span><span>www</span><span>.</span><span>apachefriends</span><span>.</span><span>org</span><span>/</span><span>en</span><span>/</span><span>index</span><span>.</span><span>html</span></a>
Github
<a class="vglnk" href="https://github.com/" rel="nofollow"><span>https</span><span>://</span><span>github</span><span>.</span><span>com</span><span>/</span></a>
Github For Windows
<a class="vglnk" href="http://windows.github.com/" rel="nofollow"><span>http</span><span>://</span><span>windows</span><span>.</span><span>github</span><span>.</span><span>com</span><span>/</span></a>
Composer
<a class="vglnk" href="http://getcomposer.org/" rel="nofollow"><span>http</span><span>://</span><span>getcomposer</span><span>.</span><span>org</span><span>/</span></a>
Laravel
<a class="vglnk" href="https://github.com/laravel/laravel.git" rel="nofollow"><span>https</span><span>://</span><span>github</span><span>.</span><span>com</span><span>/</span><span>laravel</span><span>/</span><span>laravel</span><span>.</span><span>git</span></a>
Hosts File
127.0.0.2 testlaravel.dev
Apache httpd-vhosts
NameVirtualHost *
<VirtualHost *>
DocumentRoot "F:XAMPPxampphtdocs"
ServerName localhost
</VirtualHost>
<VirtualHost *>
DocumentRoot "F:XAMPPxampphtdocslaravel_testpublic"
ServerName testlaravel.dev
<Directory "F:XAMPPxampphtdocslaravel_testpublic">
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
No Comments
Leave a comment Cancel