Frappe Builder is a low-code website builder designed for simplicity, speed, and flexibility. Craft beautiful websites effortlessly with an intuitive visual builder. Whether you're a designer looking for ease or a developer seeking customization, Frappe Builder empowers you. It also features a click-to-publish option that gives you the complete end-to-end website creation experience.
Most existing solutions were either too complex, too restrictive, or difficult to integrate with the Frappe ecosystem. Additionally, pages built with these tools were often bloated with unnecessary scripts and styles. I wanted to take a stab at solving this problem while prioritising performance from day one. I aimed to address two major issues with this project: providing an intuitive way to design a web page and enabling one-click publishing. As a web developer, it helps me scratch my own itch, and I hope it helps others too.
- ✨ Intuitive Visual Builder: Simplify your workflow with a Figma-like editor.
- 📱 Responsive Views: Ensure your sites look great on any device without the fuss.
- 🛠️ Frappe CMS Integration: Easily fetch data from your database and create dynamic pages.
- 🧑💻 Scripting Capabilities: Customize with client scripts, global scripts, and styles.
- 🚀 One-Click Publishing: Instantly share your creation with the world in a single click.
- ⚡ Performance Excellence: Frappe Builder does not bloat web pages with unnecessary scripts hence pages built with Frappe Builder are highly performant, consistently scoring high on Google Lighthouse tests.
- Frappe Framework: A full-stack web application framework.
- Frappe UI: A Vue-based UI library, to provide a modern user interface.
Get started with your personal or business site with a few clicks on Frappe Cloud - our official hosting service.
Follow these steps to set up Frappe Builder 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=builder_prod_setup \
[email protected] \
--image=ghcr.io/frappe/builder \
--version=stable \
--app=builder \
--sitename subdomain.domain.tld
Replace the following parameters with your values:
[email protected]
: Your email addresssubdomain.domain.tld
: Your domain name where Builder will be hosted
The script will set up a production-ready instance of Frappe Builder with all the necessary configurations in about 5 minutes.
- Setup Bench.
- In the frappe-bench directory, run
bench start
and keep it running. - Open a new terminal session and cd into
frappe-bench
directory and run following commands:$ bench get-app builder $ bench new-site sitename.localhost --install-app builder $ bench browse sitename.localhost --user Administrator
- Access the builder page at
sitename.localhost:8000/builder
in your web browser.
For Frontend Development
- Open a new terminal session and cd into
frappe-bench/apps/builder
, and run the following commands:yarn install yarn dev
- Now, you can access the site on vite dev server at
http://sitename.localhost:8080
Note: You'll find all the code related to Builder's frontend inside frappe-bench/apps/builder/frontend