Using Git Clone

You need to have installed git in your server.

master branch is being considered as a stable, but not yet released to the public.

  1. from your terminal you can run:

$ git clone https://github.com/OSSAdmiral/Recruit.git
  1. You need install the dependency package via composer and NPM:

$ composer install --optimize-autoloader --no-dev
$ npm install && npm run build
  1. Create symbolic link from your public/storage

$ php artisan storage:link
  1. You need to run caching to optimize system server response time

$ php artisan config:cache
  1. create a copy of the .env.example

$ cp .env.example .env
  1. Generate App Key by running the command below

$ php artisan generate:key
  1. Setup file and folder permissions

$ sudo chown -R www-data:www-data /var/www/Recruit
$ sudo chmod -R 775 /var/www/Recruit/app/storage
$ sudo chmod -R 775 /var/www/Recruit/app/bootstrap/cache

Last updated