Skip to content

Latest commit

 

History

History
44 lines (26 loc) · 1.06 KB

README.md

File metadata and controls

44 lines (26 loc) · 1.06 KB

CodeLink

  • CodeLink is designed to help those interested in the field of Software find projects that match their interests and connect with experienced professionals to bridge the gap between theory and practice.

Installation

1- Clone the project

  git clone https://github.com/Code-Link-organization/code-link-backend.git

2- Set up the configuration

  1. Rename .env.example to .env.

  2. Create a new database in your local database management system (e.g., phpMyAdmin).

  3. Update the DB_DATABASE value in .env with the name of the database you created. For example: DB_DATABASE=codelink

3- Install dependencies

  composer install
  php artisan key:generate

4- Run database migrations

  php artisan migrate 
  php artisan migrate:fresh

5- Launch the application

  php artisan serve