Self-host Frappe Builder in production
developTo deploy a production-ready instance of Frappe Builder, use the easy-install.py script. This process sets up the necessary configurations in approximately 5 minutes.
- Download the installation script:
wget https://frappe.io/easy-install.py - Run the deployment command with your specific parameters:
python3 ./easy-install.py deploy \ --project=builder_prod_setup \ --email=email@example.com \ --image=ghcr.io/frappe/builder \ --version=stable \ --app=builder \ --sitename subdomain.domain.tld
Parameters:
--email: Your contact email address.--sitename: The domain name where Builder will be hosted (e.g.,subdomain.domain.tld).--image: Useghcr.io/frappe/builder.--version: Usestablefor production.--app: Usebuilder.
python3 ./easy-install.py deploy \
--project=builder_prod_setup \
--email=email@example.com \
--image=ghcr.io/frappe/builder \
--version=stable \
--app=builder \
--sitename subdomain.domain.tld