b. Installation
b. Installation
Once everything is installed from a. Prerequisites, we can now install and run the application locally.
Clone the application
git clone https://mis-git.adnu.edu.ph/misadnu/hris.git
cd hris
Install Composer packages
composer install
Install Node.js packages
npm install
Setup environment variables
cp .env.example .env
# paste the credentials to .env
Initialize project
php artisan ide:generate
php artisan key:generate
Run the application
php artisan serve --host localhost
npm run dev
➡️ Next up!