Skip to content

Latest commit

 

History

History
69 lines (54 loc) · 1.96 KB

README.md

File metadata and controls

69 lines (54 loc) · 1.96 KB

Laravel Logo

Build Status Total Downloads Latest Stable Version License

🚀 First-time repository setup

Follow these steps to set up the project for the first time:

  1. Clone this repository to your local machine:
git clone https://github.com/OSSD13/cluster4.git
  1. Go into the project directory:
cd project-name
  1. 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
  1. Configure the .env file:
cp .env.example .env
  1. Generate the application key:
php artisan key:generate
  1. 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
  1. Run database migrations:
php artisan migrate

Requirements

  • PHP 8.2+
  • Composer
  • Laravel 11
  • FontAwesome 6.7.2

License

The Laravel framework is open-sourced software licensed under the MIT license.