Spaces:
Running
Running
zzstoatzz commited on
Commit ·
a80c302
1
Parent(s): 18d0508
update
Browse files
justfile
CHANGED
|
@@ -16,15 +16,12 @@ docs:
|
|
| 16 |
|
| 17 |
# Generate API reference documentation for all modules
|
| 18 |
api-ref-all:
|
| 19 |
-
|
| 20 |
|
| 21 |
# Generate API reference for specific modules (e.g., just api-ref prefect.flows prefect.tasks)
|
| 22 |
api-ref *MODULES:
|
| 23 |
-
uvx --with-editable . --refresh-package mdxify mdxify@latest {{MODULES}} --root-module fastmcp --anchor-name "
|
| 24 |
|
| 25 |
# Clean up API reference documentation
|
| 26 |
api-ref-clean:
|
| 27 |
-
rm -rf docs/python-sdk
|
| 28 |
-
|
| 29 |
-
copy-context:
|
| 30 |
-
uvx --with-editable . --refresh-package copychat copychat@latest src/ docs/ -x changelog.mdx -x python-sdk/ -v
|
|
|
|
| 16 |
|
| 17 |
# Generate API reference documentation for all modules
|
| 18 |
api-ref-all:
|
| 19 |
+
uvx --with-editable . --refresh-package mdxify mdxify@latest --all --root-module fastmcp --anchor-name "Python SDK" --exclude fastmcp.contrib
|
| 20 |
|
| 21 |
# Generate API reference for specific modules (e.g., just api-ref prefect.flows prefect.tasks)
|
| 22 |
api-ref *MODULES:
|
| 23 |
+
uvx --with-editable . --refresh-package mdxify mdxify@latest {{MODULES}} --root-module fastmcp --anchor-name "Python SDK"
|
| 24 |
|
| 25 |
# Clean up API reference documentation
|
| 26 |
api-ref-clean:
|
| 27 |
+
rm -rf docs/python-sdk
|
|
|
|
|
|
|
|
|