aykdgreat / course_allocate

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Course Allocate Laravel Project Setup

This guide outlines the steps to set up the "Course Allocate" Laravel project after cloning the repository.

1. Clone the Repository

git clone https://github.com/aykdgreat/course_allocate.git

2. Install Composer Dependencies

composer install

3. Install NPM Packages

npm install

Ensure you have Node.js and npm installed before running this command.

4. Create a Copy of the .env File

cp .env.example .env

5. Generate Application Key

php artisan key:generate

6. Configure the Database in .env

Set your database connection details in the .env file.

7. Migrate Database

php artisan migrate

8. Seed the Database

php artisan db:seed

9. Run Development Server

php artisan serve

Access the application in your browser at http://localhost:8000.

Additional Notes

About


Languages

Language:CSS 84.2%Language:JavaScript 12.2%Language:PHP 2.2%Language:Blade 1.4%