PREVIEW: https://novalance.onrender.com
First clone the repo
git clone https://github.com/kadik23/Novalance <directory-name>
Then change directory to that project
cd <directory-name>
Then you need to create a copy of .env.example and name it .env or run this command
copy .env.example .env
then install all necessary composer dependencies by running
composer install
Then since this is laravel you need to generate new key so run
php artisan key:generate
and Generate the secret key for JWT
php artisan jwt:secret
also you need to link the storage to show the public images, just run this command
php artisan storage:link
And for the frontend you need to change directory to the frontend
cd frontend
then run
npm install
then you can run the development server, make sure you have laravel server running in another terminal so the frontend can intract with the api.
npm run dev