Facebook Group - https://www.facebook.com/groups/laravelph
Twitter Account - https://twitter.com/LaravelPH
Create an issue - https://github.com/Laravel-Philippines/LaravelPH-Website/issues.
Please read through our contributing guidelines.
Here are the steps for installation on a local machine.
-
Make sure you have Laravel Homestead installed.
-
Clone this repository.
git clone [email protected]:Laravel-Philippines/LaravelPH-Website.git laravelph/ cd laravelph/ -
Add the path for the cloned laravelph repository to the
Homestead.ymlfile under thefolderslist. -
Add a site
laravelph.localfor the laravelph repository to theHomestead.ymlfile under thesiteslist. -
Run
vagrant provisionin your Homestead folder. -
Create a database in Homestead called
laravelph. -
Create a file named .env.local.php in the root folder of laravelph repository and copy and paste the code below:
<?php return array( 'DB_HOST' => 'localhost', 'DB_NAME' => 'laravelph', 'DB_USERNAME' => 'homestead', 'DB_PASSWORD' => 'secret', );
-
Add
127.0.0.1 laravelph.localto your computer'shostsfile.
You can now visit the app in your browser by visiting http://laravelph.local:8000/.
- Create a database in Homestead called
laravelph_test - SSH into your Homestead box, go to the laravelph folder and run
./vendor/bin/phpunit