Skip to content

Commit 3b430b2

Browse files
committed
docs: add documentation for unix-like glob path pattern support in modelfile
Added a detailed explanation of the unix-like glob path pattern. Signed-off-by: Yang Kaiyong <yangkaiyong.yky@antgroup.com>
1 parent 927a10c commit 3b430b2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

docs/getting-started.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ $ ./output/modctl -h
2222

2323
Build the model artifact you need to prepare a Modelfile describe your expected layout of the model artifact in your model repo.
2424

25+
Notes: We support Unix-like glob path patterns, where:
26+
- `*` matches any number of characters except path separators (`/`).
27+
- `**` matches any number of directories, including zero directories.
28+
For example, `**/*.py` matches all `.py` files in the current directory and its subdirectories.
29+
2530
Example of Modelfile:
2631

2732
```shell

0 commit comments

Comments
 (0)