Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: improve registration patterns docs #5808

6 changes: 6 additions & 0 deletions docs/user_guide/flyte_fundamentals/registering_workflows.md
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,12 @@ pyflyte --pkgs <dir1> --pkgs <dir2> package ...
This is useful in cases where you want to register two different Flyte projects
that you maintain in a single place.


If you encounter a ``ModuleNotFoundError`` when packaging, use the `--source` option to include the correct source paths. For instance:

```{prompt} bash $
pyflyte --pkgs <dir1> package --source ./src -f
```
````

#### Register with `flytectl register`
Expand Down
Loading