Packages
Brandon Pollack's basic elixir template for new projects.
Current section
Files
Jump to
Current section
Files
template/$PROJECT_NAME$/notebooks/example.livemd
# Example Workspace Livebook
```elixir
Mix.install(
[
{:kino, "~> 0.14.0"},
{:<%= @project_name %>, path: Path.join(__DIR__, ".."), env: :dev}
],
# config_path: :my_app, # uncomment if there is a config.exs
lockfile: :<%= @project_name %>
)
```
## Doit
```elixir
Kino.Process.render_seq_trace(fn ->
# TODO
end)
```