Easy to Use, 100% Open Source Learning Management System https://frappe.io/learning
  • Vue 55.8%
  • Python 30.1%
  • JavaScript 6.5%
  • HTML 3.8%
  • CSS 2.6%
  • Other 1.1%
Find a file
Raizaaa bb5e277e9e
Merge pull request #2325 from raizasafeel/fix/loading-state
fix: show job count on jobs listing for guest users
2026-04-23 00:16:38 +05:30
.github ci(build): update Frappe branch to version-16 in workflow 2026-04-01 08:57:14 +02:00
cypress test: corrected zip path 2026-04-02 19:24:07 +05:30
docker build(init): add payments dependency 2026-04-03 19:25:15 +02:00
frappe-ui@78025c6794 chore: upgraded frappe-ui 2025-12-01 17:54:15 +05:30
frontend Merge pull request #2325 from raizasafeel/fix/loading-state 2026-04-23 00:16:38 +05:30
lms Merge pull request #2325 from raizasafeel/fix/loading-state 2026-04-23 00:16:38 +05:30
.editorconfig ci: flake8 issues 2022-11-04 12:43:15 +05:30
.eslintrc chore: formatted files with ruff 2025-08-11 17:48:37 +05:30
.flake8 ci: flake8 issues 2022-11-04 12:43:15 +05:30
.gitignore chore: added type hints to all whitelisted functions 2026-02-06 16:01:49 +05:30
.gitmodules chore: bumped up frappe-ui 2024-09-12 14:31:55 +05:30
.mergify.yml chore: updated release process with main-hotfix 2026-02-16 18:33:45 +05:30
.pre-commit-config.yaml chore: formatted files with ruff 2025-08-11 17:48:37 +05:30
.releaserc feat: new course form slow 2026-01-29 10:50:28 +05:30
bench-installation.md refactor: renamed app to lms 2022-03-19 17:30:00 +05:30
codecov.yml ci: codecov rules 2026-04-03 12:38:34 +05:30
commitlint.config.js chore: changed file to esm 2025-05-14 11:30:11 +05:30
Contribution.md refactor: renamed app to lms 2022-03-19 17:30:00 +05:30
crowdin.yml feat: translations via gettext 2024-07-01 11:15:12 +05:30
cypress.config.js ci: run ui tests parallely (#2232) 2026-03-19 17:20:48 +05:30
docker-installation.md Update docker-installation.md 2024-01-01 15:32:00 +01:00
license.txt fix: readme and license 2021-10-27 20:00:07 +05:30
MANIFEST.in refactor: renamed app to lms 2022-03-19 17:30:00 +05:30
package.json ci: run ui tests parallely (#2232) 2026-03-19 17:20:48 +05:30
pyproject.toml chore: frappe dependency change 2026-03-13 18:27:58 +05:30
README.md docs(readme): add DNS configuration note to avoid 404 error during self-hosting 2025-07-02 13:43:10 +04:00
SECURITY.md chore: created security policy 2023-10-27 17:17:10 +05:30
yarn-error.log fix: frappe-ui setup 2023-11-29 22:28:38 +05:30
yarn.lock ci: run ui tests parallely (#2232) 2026-03-19 17:20:48 +05:30

Frappe Learning logo

Frappe Learning

Easy to use, open source, Learning Management System

Tests

Hero Image

Frappe Learning

Frappe Learning is an easy-to-use learning system that helps you bring structure to your content.

Motivation

In 2021, we were looking for a Learning Management System to launch Mon.School for FOSS United. We checked out Moodle, but it didnt feel right. The forms were unnecessarily lengthy and the UI was confusing. It shouldn't be this hard to create a course right? So I started making a learning system for Mon.School which soon became a product in itself. The aim is to have a simple platform that anyone can use to launch a course of their own and make knowledge sharing easier.

Key Features

  • Structured Learning: Design a course with a 3-level hierarchy, where your courses have chapters and you can group your lessons within these chapters. This ensures that the context of the lesson is set by the chapter.

  • Live Classes: Group learners into batches based on courses and duration. You can then create Zoom live class for these batches right from the app. Learners get to see the list of live classes they have to take as a part of this batch.

  • Quizzes and Assignments: Create quizzes where questions can have single-choice, multiple-choice options, or can be open ended. Instructors can also add assignments which learners can submit as PDF's or Documents.

  • Getting Certified: Once a learner has completed the course or batch, you can grant them a certificate. The app provides an inbuilt certificate template. You can use this or else create a template of your own and use that instead.

View Screenshots

Batch

Create batches to group your learners

Quiz

Evaluate their knowledge by quizzes

Cerficicate

Autenticate their work with certification

Under the Hood

  • Frappe Framework: A full-stack web application framework.

  • Frappe UI: A Vue-based UI library, to provide a modern user interface.

Production Setup

Managed Hosting

You can try Frappe Cloud, a simple, user-friendly and sophisticated open-source platform to host Frappe applications with peace of mind.

It takes care of installation, setup, upgrades, monitoring, maintenance and support of your Frappe deployments. It is a fully featured developer platform with an ability to manage and control multiple Frappe deployments.

Self Hosting

Follow these steps to set up Frappe Learning in production:

Step 1: Download the easy install script

wget https://frappe.io/easy-install.py

Step 2: Run the deployment command

python3 ./easy-install.py deploy \
    --project=learning_prod_setup \
    --email=your_email.example.com \
    --image=ghcr.io/frappe/lms \
    --version=stable \
    --app=lms \
    --sitename subdomain.domain.tld

Replace the following parameters with your values:

  • your_email.example.com: Your email address
  • subdomain.domain.tld: Your domain name where Learning will be hosted

The script will set up a production-ready instance of Frappe Learning with all the necessary configurations in about 5 minutes.

Note: To avoid a 404 Page Not Found error:

  • If hosting on a public server, make sure your DNS A record points to your server's IP.
  • If hosting locally, map your domain to 127.0.0.1 in your /etc/hosts file:

Development Setup

Docker

You need Docker, docker-compose and git setup on your machine. Refer Docker documentation. After that, follow below steps:

Step 1: Setup folder and download the required files

mkdir frappe-learning
cd frappe-learning

# Download the docker-compose file
wget -O docker-compose.yml https://raw.githubusercontent.com/frappe/lms/develop/docker/docker-compose.yml

# Download the setup script
wget -O init.sh https://raw.githubusercontent.com/frappe/lms/develop/docker/init.sh

Step 2: Run the container and daemonize it

docker compose up -d

Step 3: The site http://lms.localhost:8000/lms should now be available. The default credentials are:

  • Username: Administrator
  • Password: admin

Local

To setup the repository locally follow the steps mentioned below:

  1. Install bench and setup a frappe-bench directory by following the Installation Steps
  2. Start the server by running bench start
  3. In a separate terminal window, create a new site by running bench new-site learning.test
  4. Map your site to localhost with the command bench --site learning.test add-to-hosts
  5. Get the Learning app. Run bench get-app https://github.com/frappe/lms
  6. Run bench --site learning.test install-app lms.
  7. Now open the URL http://learning.test:8000/lms in your browser, you should see the app running

Learn and connect