Skip to content

frappe/education

Repository files navigation

Frappe Education Logo

Frappe Education

Empowering Schools with Smarter Management

GitHub release (latest by date)

Screenshot 2025-01-01 at 6 24 15 PM

Frappe Education

Frappe Education is an open-source and user-friendly Education Management System designed to streamline the administrative and academic processes of educational institutions. It is a powerful module based on the ERPNext software.

Motivation

All the tools to manage which are available in the market were just not good enough.They were way too scatered, or too expensive or too complex to use. We wanted to create a tool that is easy to use, affordable and can be customized as per the needs of the institution. Frappe Education is dedicated to making education management more efficient and less time-consuming.

Key Features

  • Student & Teacher Management - Manage student and teacher profiles, attendance.

  • Admission Management - Streamline the admission process for new students.

  • Fee Management - Organize and manage the fee structure and schedule payments.

  • Course Scheduling & Exam Planning - Efficiently schedule courses and manage course calendars.

  • Student Portal - Students can visit the portal to check their timetable, attendance, pay fees online, and see current and previous grades.

View Screenshots

Student Management
Screenshot 2025-01-01 at 6 09 34 PM
Organize and manage the fee structure and schedule payments.
Screenshot 2025-01-01 at 6 12 40 PM
Efficiently schedule courses and manage course calendars. 🗓️
Screenshot 2025-01-01 at 6 19 49 PM
Student Portal - Fee Payment Records
Screenshot 2025-01-01 at 6 16 27 PM

Under the Hood

  • Frappe Framework: A full-stack web application framework written in Python and Javascript.

  • ERPNext - An open-source, modern ERP system that includes modules for accounting, inventory, manufacturing, and more.

  • 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 Education 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=education_prod_setup \
    --email=your_email.example.com \
    --image=ghcr.io/frappe/education \
    --version=stable \
    --app=education \
    --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 Education will be hosted

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

Development Setup

Local

  1. Install bench and setup a frappe-bench directory by following the Installation Steps

  2. Install ERPNext by running bench get-app erpnext

  3. Once ERPNext is installed, install the Education App by using bench get-app education

  4. In a separate terminal window, create a new site by running bench new-site education.test

  5. Map your site to localhost with the command bench --site education.test add-to-hosts

  6. After that, you can install the Education app on the required site by running

    $ bench --site sitename install-app education
  7. Now open the URL http://education.test:8000/education in your browser, you should see the app running

  8. To access student portal, open the URL http://education.test:8000/student-portal in your browser, you should see the student portal running.

Learn and connect