LMS-Laravel is a Learning Management System (or LMS) that facilitates the creation of educational content by allowing you to manage courses and learning modules. The platform is simple and intuitive and provides features for:
- The Teacher (course creator)
- The Student (or user)
- The Admin
As the name suggests, LMS-laravel is built on the latest Laravel framework, and uses various open source packages. This application is still in development, if you want to collaborate on the development, send us an email:
Angel: angelkurten@hotmail.com
- Run
git clone https://github.com/LMS-Laravel/LMS-Laravel.git LMS-Laravel
cd LMS-Laravel
- Run
composer install
(install composer beforehand) - From the projects root run
cp .env.example .env
- Configure your
.env
file, with:
Database settings
DB_DATABASE=lms_laravel
DB_USERNAME=root
DB_PASSWORD=root
Google recaptcha settings (which you can configure from https://www.google.com/recaptcha/admin/site)
ENABLE_CAPTCHA=true
NOCAPTCHA_SITEKEY=xxxxxxxxxx
NOCAPTCHA_SECRET=xxxxxxxxxxx
Email settings (using a provider like Mailgun, Amazon SES, etc)
-
Run
php artisan key:generate
-
Run
php artisan migrate
-
For Auth API (to configure Laravel Passport), run:
php artisan passport:install
-
Run
npm install
-
Run
php artisan db:seed
-
Start the Laravel server
php artisan serve --port=8000
-
Start the Websocket server (for chat functionality)
php artisan websockets:serve
LMS-Laravel is licensed under the MIT license. Enjoy!