Follow these steps to set up the project for the first time:
- Clone this repository to your local machine:
git clone https://github.com/OSSD13/cluster4.git
- Go into the project directory:
cd project-name
- Install dependencies: *** If you're cloning this project for the first time, run this command: ***
composer install
*** If someone adds new packages after you pull, you need to run this command: ***
composer update
- Configure the .env file:
cp .env.example .env
- Generate the application key:
php artisan key:generate
- Make sure the database configuration in the .env file is correct.
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=cluster_4
DB_USERNAME=root
DB_PASSWORD=your_password
- Run database migrations:
php artisan migrate
- PHP 8.2+
- Composer
- Laravel 11
- FontAwesome 6.7.2
The Laravel framework is open-sourced software licensed under the MIT license.