From 9ff60436939539d3ce9abf14ab0f12ddd6d7ccd7 Mon Sep 17 00:00:00 2001 From: Jayanta <55305804+regdocs@users.noreply.github.com> Date: Tue, 24 Mar 2026 16:51:28 +0530 Subject: [PATCH] fix(boilerplate): add apt dependencies section for Frappe Cloud (#38198) * fix(boilerplate): Add apt dependencies for Frappe Cloud Add apt dependencies section for Frappe Cloud deployment --- frappe/utils/boilerplate.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/frappe/utils/boilerplate.py b/frappe/utils/boilerplate.py index 42916d3ef0..28cec44069 100644 --- a/frappe/utils/boilerplate.py +++ b/frappe/utils/boilerplate.py @@ -357,6 +357,10 @@ build-backend = "flit_core.buildapi" [tool.bench.dev-dependencies] # package_name = "~=1.1.0" +# These apt dependencies will be installed from Ubuntu repositories when you host your app on Frappe Cloud +[deploy.dependencies.apt] +packages = [] + [tool.ruff] line-length = 110 target-version = "py314"