description |
---|
You need to have installed git in your server. |
{% 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 %}
- from your terminal you can run:
$ git clone https://github.com/OSSAdmiral/Recruit.git
- 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 %}
- Create symbolic link from your public/storage
$ php artisan storage:link
- You need to run caching to optimize system server response time
$ php artisan config:cache
- create a copy of the
.env.example
$ cp .env.example .env
- Generate App Key by running the command below
$ php artisan generate:key
- 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 %}