- 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.
1- Clone the project
git clone https://github.com/Code-Link-organization/code-link-backend.git
2- Set up the configuration
-
Rename
.env.example
to.env
. -
Create a new database in your local database management system (e.g., phpMyAdmin).
-
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