git clone
this repo- Open this project with your code editor:
cd laravel-job-board && code .
- Install dependencies
composer install
- Copy .env.example file, rename it with .env and update environment variables:
cp .env.example .env
- Generate key for your app
php artisan key:generate
- Create two databases:
sudo mysql
one for projectcreate database laravel_job_board
and one for testingcreate database testing
- Migrate database
php artisan migrate
- Run your project
php artisan serve
and visithttp://127.0.0.1:8000
For API collections use json file provided inside postman directory