Fully featured, open source CRM https://frappe.io/crm
  • Vue 65%
  • Python 25.3%
  • JavaScript 8.6%
  • TypeScript 0.5%
  • HTML 0.5%
Find a file
2026-04-23 11:10:14 +05:30
.devcontainer ci: Init Codespaces 2024-03-27 14:06:45 +05:30
.github ci: add frontend unit tests, coverage, and linting to GitHub CI 2026-04-19 22:21:57 +05:30
.pi chore: move AI context docs into .pi/ 2026-04-19 22:10:31 +05:30
.vscode chore: linter fixes 2026-01-15 14:12:17 +05:30
crm Merge pull request #2099 from frappe/l10n_develop4 2026-04-22 18:43:58 +05:30
docker fix: update init scripts for consistent Redis configuration and branch usage 2025-07-31 16:02:00 +05:30
frappe-ui@61d6228d38 fix: update eslint configuration and dependencies for frontend files 2026-02-28 17:41:08 +05:30
frontend fix: pass the new boolean value explicitly 2026-04-22 20:58:58 +05:30
scripts fix: update init scripts for consistent Redis configuration and branch usage 2025-07-31 16:02:00 +05:30
.gitignore ci: add frontend unit tests, coverage, and linting to GitHub CI 2026-04-19 22:21:57 +05:30
.gitmodules fix: added frappe-ui submodule 2023-08-03 16:11:11 +05:30
.mergify.yml chore: given access to pratik 2025-11-19 15:52:15 +05:30
.pre-commit-config.yaml fix: update prettier configuration to exclude crm/public/frontend directory 2026-03-02 14:36:10 +05:30
.releaserc ci: Auto release based on semantic versioning 2024-04-08 20:32:30 +05:30
AGENTS.md chore: move AI context docs into .pi/ 2026-04-19 22:10:31 +05:30
codecov.yml ci(codecov): add initial codecov configuration for coverage reporting 2026-02-02 16:02:18 +05:30
commitlint.config.cjs chore: linter fixes 2026-01-15 14:07:12 +05:30
crowdin.yml fix: updated crowdin.yml 2025-07-22 10:38:28 +05:30
LICENSE chore: added LICENSE AGPL v3 2023-09-13 21:26:52 +05:30
package.json fix: update package.json with project metadata and improve postinstall script 2026-01-14 13:03:28 +05:30
pyproject.toml chore: add project URLs 2026-02-17 15:47:38 +05:30
README.md fix: update live demo link in README and add live demo API handling 2026-03-23 14:16:20 +05:30
yarn.lock refactor: update Vite configuration to check for local frappe-ui plugin 2025-10-01 00:09:35 -07:00

Frappe CRM Logo

Frappe CRM

Simplify Sales, Amplify Relationships

GitHub release (latest by date)

Frappe CRM Hero Image

Live Demo - Website - Documentation

Frappe CRM

Frappe CRM is a simple, affordable, open-source CRM tool designed for modern sales teams with unlimited users. Frappe CRM is crafted for providing a great user experience, packed with features for core CRM activities helping you build strong customer relationships while keeping things clean and organised.

Motivation

The motivation behind building Frappe CRM stems from the need for a simple, customizable, and open-source solution tailored to modern business needs. Many existing CRMs are either too complex, overly generic, or locked behind steep pricing models that hinder accessibility and flexibility. Frappe CRM was designed to bridge this gap, offering a tool that empowers businesses to manage their customer relationships seamlessly while being easy to adapt to specific workflows. Built on the Frappe framework, it prioritizes usability, extensibility, and affordability, making it an ideal choice for growing teams and organizations looking for a CRM that aligns with their unique processes.

Key Features

  • User-Friendly and Flexible: A simple, intuitive interface thats easy to navigate and highly customizable, enabling teams to adapt it to their specific processes effortlessly.

  • All-in-One Lead/Deal Page: Consolidate all essential actions and details—like activities, comments, notes, tasks, and more—into a single page for a seamless workflow experience.

  • Kanban View: Manage leads and deals visually with a drag-and-drop Kanban board, offering clarity and efficiency in tracking progress across stages.

  • Custom Views: Design personalized views to organize and display leads and deals using custom filters, sorting, and columns, ensuring quick access to the most relevant information.

    Screenshots
    Lead List
    Lead Page
    Email Template
    Call UI
    Call Log

Integrations

  • Twilio: Integrate Twilio to make and receive calls from the CRM. You can also record calls. It is a built-in integration.
  • Exotel: Integrate Exotel to make and receive calls via agents mobile phone from the CRM. You can also record calls. It is a built-in integration.
  • WhatsApp: Integrate WhatsApp to send and receive messages from the CRM. Frappe WhatsApp is used for this integration.
  • ERPNext: Integrate with ERPNext to extend the CRM capabilities to include invoicing, accounting, and more.

Under the Hood

  • Frappe Framework: A full-stack web application framework.
  • Frappe UI: A Vue-based UI library, to provide a modern user interface.

Compatibility

This app is compatible with the following versions of Frappe and ERPNext:

CRM branch Stability Frappe branch ERPNext branch
main - v1.x stable v15.x & v16.x v15.x & v16.x
develop - future/v2.x unstable develop - future/v17 develop - future/v17

Getting Started (Production)

Managed Hosting

Get started with your personal or business site with a few clicks on Frappe Cloud - our official hosting service.

Self Hosting

Follow these steps to set up Frappe CRM 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=crm_prod_setup \
    --email=email.example.com \
    --image=ghcr.io/frappe/crm \
    --version=stable \
    --app=crm \
    --sitename subdomain.domain.tld

Replace the following parameters with your values:

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

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

Getting Started (Development)

Local Setup

  1. Setup Bench.
  2. In the frappe-bench directory, run bench start and keep it running.
  3. Open a new terminal session and cd into frappe-bench directory and run following commands:
    $ bench get-app crm
    $ bench new-site sitename.localhost --install-app crm
    $ bench browse sitename.localhost --user Administrator
    
  4. Access the crm page at sitename.localhost:8000/crm in your web browser.

For Frontend Development

  1. Open a new terminal session and cd into frappe-bench/apps/crm, and run the following commands:
    yarn install
    yarn dev
    
  2. Now, you can access the site on vite dev server at http://sitename.localhost:8080

Note: You'll find all the code related to Frappe CRM's frontend inside frappe-bench/apps/crm/frontend

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-crm
cd frappe-crm

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

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

Step 2: Run the container and daemonize it

docker compose up -d

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

  • Username: Administrator
  • Password: admin

Learn and connect