From 5460eaaee44e7a5ded79c1b9c82b24eeca327f8a Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Tue, 13 Jun 2023 22:18:41 +0600 Subject: [PATCH] update fleet run commands --- .fleet/run.json | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.fleet/run.json b/.fleet/run.json index a013164..9406bcb 100644 --- a/.fleet/run.json +++ b/.fleet/run.json @@ -3,15 +3,14 @@ { "type": "command", "name": "Rebuild", - "program": "mkdocs", - "args": ["build"], + "program": "poetry", + "args": ["run", "mkdocs", "build"], }, { "type": "command", "name": "Serve", - "program": "mkdocs", - "args": ["serve"], + "program": "poetry", + "args": ["run", "mkdocs", "serve"], }, - ] -} \ No newline at end of file +}