Skip to content
This repository was archived by the owner on Feb 11, 2026. It is now read-only.

Commit d2e04aa

Browse files
committed
feat: add local resource for documentation in Tiltfile
Introduced a new local resource for serving documentation, including a command to run the docs server and a link to access it. This enhances the local development setup by providing easy access to project documentation.
1 parent db91e24 commit d2e04aa

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Tiltfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,15 @@ local_resource(
2828
labels=['Agentic']
2929
)
3030

31+
local_resource(
32+
'📚 Docs',
33+
serve_dir='docs',
34+
serve_cmd='mint dev --port 3333',
35+
links=[ link('http://localhost:3333', 'Docs'), ],
36+
labels=['Agentic'],
37+
auto_init=False
38+
)
39+
3140
local_resource(
3241
'🧪 E2E Tests',
3342
cmd='echo 0',

0 commit comments

Comments
 (0)