From 20db681b664699f320f142ad936207f946df3f78 Mon Sep 17 00:00:00 2001 From: Augustin Delaporte Date: Thu, 15 Jan 2026 15:47:00 +0100 Subject: [PATCH] Update frontend and backend root paths in config This will allow running source operations on the applications. --- .upsun/config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.upsun/config.yaml b/.upsun/config.yaml index 124cdd6..209a2f2 100644 --- a/.upsun/config.yaml +++ b/.upsun/config.yaml @@ -7,7 +7,7 @@ applications: frontend: source: - root: "frontend" + root: "/frontend" type: "nodejs:22" @@ -47,7 +47,7 @@ applications: backend: source: - root: "backend" + root: "/backend" type: "python:3.12"