Ensure the following prerequisites are met:
PHP Version: 8.2.15 or higher Database: MariaDB, 11.3.2 or higher
Followwing are the steps:
- Copy the
.env.example
to.env
and change the following configs.
APP_URL=https://ibex-club-management.test/
DB_DATABASE=ibex-club-management
DB_USERNAME=root
DB_PASSWORD=
- Run
composer install
from the terminal. Make sure you're in the project directory. - Run
php artisan key:generate
in the terminal. - Run
php artisan migrate
in the terminal. This will ask to create the database if it is not already created. It will pick the name from the.env
file. - Run
php artisan db:seed
in the terminal to insert seed data into the database.