Using Git Clone
You need to have installed git in your server.
Installed the system under var/www directory with a proper permissions.
from your terminal you can run:
$ git clone https://github.com/OSSAdmiral/Recruit.gitYou need install the dependency package via composer and NPM:
$ composer install --optimize-autoloader --no-dev
$ npm install && npm run buildCreate symbolic link from your public/storage
$ php artisan storage:linkYou need to run caching to optimize system server response time
$ php artisan config:cachecreate a copy of the
.env.example
$ cp .env.example .envGenerate App Key by running the command below
$ php artisan generate:keySetup 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🎊 Congratulation! you've now completely installed system dependencies. Proceed to the next steps.
Last updated