-
git clone project
-
cd into project root folder
-
composer install
-
npm install
-
copy '.env-example'
-
paste '.env-example' (same directory, root in this case)
-
rename '.env-example' to '.env'
-
set your database in '.env' file
-
set '.env' file with your (SMTP) email service provider info to deliver email after the creation of a new job position
- MAIL_MAILER=smtp
- MAIL_HOST= // your host
- MAIL_PORT=2525
- MAIL_USERNAME= // your username
- MAIL_PASSWORD= // your password
-
php artisan migrate
-
php artisan db:seed
-
php artisan key:generate
-
php artisan serve
-
php artisan queue:work