Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/docs/core/cli.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ The `APP_TARGET` can be:

2. A **path to a Python file** defining your flows (e.g., `main.py`, `path/to/my_flows.py`).

The file will be loaded as a top-level Python module, e.g. relative imports will not work as its parent package is not defined (similar to how `python main.py` works).
The file will be loaded as a top-level Python module, e.g. relative imports will not work as its parent package is not defined (similar to how `python main.py` resolves imports).

3. For commands that operate on a *specific flow* (like `show`, `update`, `evaluate`), you can combine the application reference with a flow name:
* `path/to/my_flows.py:MyFlow`
* `my_package.flows:MyFlow`
* `path/to/my_flows.py:MyFlow`

### Environment Variables

Expand Down