lms-laravel/lms-laravel

The Laravel Framework.

Installs: 1 803

Dependents: 0

Suggesters: 0

Security: 0

Stars: 362

Watchers: 32

Forks: 188

Open Issues: 13

Type:project

v1.0.0-alpha 2020-04-29 06:22 UTC

This package is auto-updated.

Last update: 2024-03-25 08:57:59 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License

About

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:

  1. The Teacher (course creator)
  2. The Student (or user)
  3. 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

Installation

  • 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 && npm run dev

  • 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

License

LMS-Laravel is licensed under the MIT license. Enjoy!