Skip to content

Commit

Permalink
update post
Browse files Browse the repository at this point in the history
Signed-off-by: Mecoli1219 <[email protected]>
  • Loading branch information
Mecoli1219 committed Nov 16, 2024
1 parent c97f6db commit eb16496
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 49 deletions.
23 changes: 23 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,29 @@
],
"local": flytesnacks_local_path is not None,
},
{
"name": "mecoliflytesnacks",
"source": "https://github.com/Mecoli1219/flytesnacks",
"docs_path": "docs",
"dest": "mecoliflytesnacks",
"cmd": [
["cd", f"{flytesnacks_path}"],
["git", "checkout", "origin/jupyter-basic"],
["cd", "-"],
["cp", "-R", f"{flytesnacks_path}/examples", "./mecoliexamples"],
[
# remove un-needed docs files in flytesnacks
"rm",
"-rf",
"flytesnacks/jupyter_execute",
"flytesnacks/auto_examples",
"flytesnacks/_build",
"flytesnacks/_tags",
"flytesnacks/index.md",
]
],
"local": False,
},
{
"name": "flytekit",
"source": flytekit_local_path or "https://github.com/flyteorg/flytekit",
Expand Down
3 changes: 0 additions & 3 deletions docs/user_guide/flyte_fundamentals/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ use cases.
- Develop and deploy workflows to a local Flyte demo cluster.
* - {doc}`⏱ Running and scheduling workflows <running_and_scheduling_workflows>`
- Execute workflows programmatically and schedule them as cron jobs.
* - {doc}`📙 Jupyter notebook interactive mode <jupyter_notebook_interactive_mode>`
- Develop and debug Flyte workflows interactively in Jupyter notebooks.
* - {doc}`📊 Visualizing task input and output <visualizing_task_input_and_output>`
- Create rich, customizable static reports for increased visibility into tasks.
* - {doc}`🏎 Optimizing tasks <optimizing_tasks>`
Expand All @@ -47,7 +45,6 @@ cluster, see the {ref}`Deployment Guide <deployment>`.
tasks_workflows_and_launch_plans
registering_workflows
running_and_scheduling_workflows
jupyter_notebook_interactive_mode
visualizing_task_input_and_output
optimizing_tasks
extending_flyte
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,14 @@ remote = FlyteRemote(
)
```

If you're running this code in a Jupyter notebook, you can also use the
`interactive_mode` to run workflows interactively:

```{nb-literalinclude} /mecoliexamples/basics/basics/basic_interactive_mode.ipynb
:cell: 3
:lines: 4-9
```

## Running a workflow

You can run workflows using the `FlyteRemote` {py:meth}`~flytekit.remote.remote.FlyteRemote.execute`
Expand Down

0 comments on commit eb16496

Please sign in to comment.