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.yml
file under thefolders
list. -
Add a site
laravelph.local
for the laravelph repository to theHomestead.yml
file under thesites
list. -
Run
vagrant provision
in 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.local
to your computer'shosts
file.
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