Skip to content

Latest commit

 

History

History
65 lines (45 loc) · 1.4 KB

using-git-clone.md

File metadata and controls

65 lines (45 loc) · 1.4 KB
description
You need to have installed git in your server.

Using Git Clone

{% hint style="info" %} master branch is being considered as a stable, but not yet released to the public. {% endhint %}

{% hint style="warning" %} Installed the system under var/www directory with a proper permissions. {% endhint %}

  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:

{% code fullWidth="false" %}

$ composer install --optimize-autoloader --no-dev
$ npm install && npm run build

{% endcode %}

  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

{% hint style="success" %} :confetti_ball: Congratulation! you've now completely installed system dependencies. Proceed to the next steps. {% endhint %}