curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
source ~/.bashrc
nvm list-remote
nvm install v14.19.1
node -v
sudo apt install software-properties-common apt-transport-https
sudo add-apt-repository ppa:ondrej/php
sudo apt update
sudo apt upgrade
sudo apt install php7.4 php7.4-fpm php7.4-cli php7.4-common php7.4-curl php7.4-mysql php7.4-xml php7.4-zip php7.4-mbstring php7.4-gd
sudo apt-get install composer
sudo apt install mysql-server
sudo apt install redis-server
Clone IMS frontend and backend
cd ims_frontend
npm run build
serve -s build
check url
http://localhost:3000
cd ims_backend
composer install
cp .env.example .env
php artisan key:generate
php artisan jwt:secret
chmod -R 777 storage
php artisan serve