💼
Recruit
  • Introduction
  • Features
  • 🚀GETTING STARTED
    • Server Requirements
    • Installation
      • Using Git Clone
      • Using Docker
    • Environment Variables
    • Database
      • Migration
      • Seed
  • 🔐Security
    • Authentication
    • Authorization
  • 👀Others
    • Server Sendmail
    • Form Captcha
  • ⚓Links
    • Source Code
    • Version Release
    • Update Docs
Powered by GitBook
On this page
Edit on GitHub
  1. GETTING STARTED
  2. Installation

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.

Installed the system under var/www directory with a proper permissions.

  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
PreviousInstallationNextUsing Docker

Last updated 1 year ago

Congratulation! you've now completely installed system dependencies. Proceed to the next steps.

🚀
🎊