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 +}