Simple referral system built with Laravel 10.
- Clone the repo
git clone https://github.com/JacobDeepu/referral.git
. - Install composer dependencies
composer install
. - Install node dependencies
npm install
. - Copy
.env.example
to.env
. - Add database credentials to
.env
. - Generate application key
php artisan key:generate
. - Migrate and seed database
php artisan migrate --seed
. - Symlink storage
php artisan storage:link
. - Laravel development server
php artisan serve
. - Vite development server
npm run dev
.
The Laravel framework is open-sourced software licensed under the MIT license.