Installation
Frappe Helpdesk can be installed in several ways depending on your requirements. You can choose to install it on Frappe Cloud, the cloud version of Frappe Helpdesk, or on your own server. The following sections describe the installation methods in detail.
Managed Hosting
Install Frappe Helpdesk with one click on Frappe Cloud. Frappe Cloud is a managed hosting platform that makes installation and maintenance easy. Sign up here to get started. Your instance will be ready in minutes. We recommend trying Frappe Cloud before self-hosting.
If you have an existing Frappe Cloud site, you can install Frappe Helpdesk from the Frappe Cloud Marketplace.
Self Hosting
Production Setup
First, download the installation script:
wget https://frappe.io/easy-install.py
Run this command to install Frappe Helpdesk:
python3 ./easy-install.py deploy \ --project=helpdesk_prod_setup \ --email=your_email.example.com \ --image=ghcr.io/frappe/helpdesk \ --version=stable \ --app=helpdesk \ --sitename subdomain.domain.tld
You need to change two things in this command:
- Replace
your_email.example.com
with your actual email address - Replace
subdomain.domain.tld
with your website domain name
The setup will take about 5 minutes. After that, you'll have a ready-to-use Frappe Helpdesk instance.
Development Setup
If you want to set up Frappe Helpdesk for development, please check our GitHub repository for detailed instructions.
Frequently Asked Questions
I have an existing self-hosted ERPNext site. How can I install Frappe Helpdesk on it?
You can install Frappe Helpdesk just like any other Frappe app. Following are the commands to get and install the app:
bench get-app helpdesk --branch main
bench --site your_site_name install-app helpdesk
I am facing issues during installation. What should I do?
If you encounter any issues during installation, please raise a GitHub issue with the error message and the steps you followed.