From f12ecaefd93fc87638ca208920780f64c0562cf0 Mon Sep 17 00:00:00 2001 From: Roo Code Date: Tue, 6 Jan 2026 11:59:41 +0000 Subject: [PATCH 1/3] feat: add roomotes configuration file --- .roo/roomotes.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .roo/roomotes.yml diff --git a/.roo/roomotes.yml b/.roo/roomotes.yml new file mode 100644 index 00000000..47255c40 --- /dev/null +++ b/.roo/roomotes.yml @@ -0,0 +1,9 @@ +version: "1.0" + +commands: + - name: Install dependencies + run: npm install + timeout: 60 + - name: Run dev + run: npm start + timeout: 10 From 772d818bb9a8ac6fc38f714e6a72c691d578d297 Mon Sep 17 00:00:00 2001 From: Roo Code Date: Tue, 6 Jan 2026 16:18:11 +0000 Subject: [PATCH 2/3] fix: increase npm start timeout from 10 to 120 seconds --- .roo/roomotes.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.roo/roomotes.yml b/.roo/roomotes.yml index 47255c40..f4804a79 100644 --- a/.roo/roomotes.yml +++ b/.roo/roomotes.yml @@ -6,4 +6,4 @@ commands: timeout: 60 - name: Run dev run: npm start - timeout: 10 + timeout: 120 From 416fe148a6f27a076604e97f74124391be1e3ad2 Mon Sep 17 00:00:00 2001 From: Bruno Bergher Date: Tue, 6 Jan 2026 16:25:12 +0000 Subject: [PATCH 3/3] Fixes run command to go to background immediately --- .roo/roomotes.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.roo/roomotes.yml b/.roo/roomotes.yml index f4804a79..203aa8c7 100644 --- a/.roo/roomotes.yml +++ b/.roo/roomotes.yml @@ -5,5 +5,5 @@ commands: run: npm install timeout: 60 - name: Run dev - run: npm start - timeout: 120 + run: nohup npm start > /tmp/docusaurus.log 2>&1 & + timeout: 60 \ No newline at end of file