This project is maintained by mantejjosan
This tutorial will guide you through the process of forking, installing, and starting development on the Library Management System (LMS) Frappe app.
We are working with the following repository: https://github.com/GreatDevelopers/library_management_system
Use the following command to fork the repository:
gh repo fork https://github.com/GreatDevelopers/library_management_system
If you haven’t set up an SSH key with GitHub CLI, use the following command:
gh auth login
Note: If you don’t have GitHub CLI (gh) installed, you can manually fork the repository by visiting the link in your browser and clicking the “Fork” button.
Note: If you’re using
fm
/docker instead of ERPNext, first enter the shell usingfm shell
before executing the following command.
Use this command to clone the app:
bench get-app https://github.com/GreatDevelopers/library_management_system
Install the app on your site using:
bench --site mysite.com install-app library_management_system
Initialize Git in the cloned repository:
git init
Now you can start working on your doctypes and make commits.
Happy developing!