File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ _tasks:
127127 echo " # optional, provision default local stack"
128128 echo " make install-stack-local"
129129 echo " # optional, start ZenML Dashboard"
130- echo " zenml login --local "
130+ echo " zenml up "
131131 echo " python run.py"
132132 echo
133133 echo "Next, you should take a look at the '{{ _copier_conf.dst_path }}/README.md' file in the generated project."
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ stack_name ?= e2e_template_stack
22
33{%- if zenml_server_url != '' %}
44remote-login :
5- zenml login " {{zenml_server_url}}"
5+ zenml connect --url " {{zenml_server_url}}"
66
77setup : remote-login
88{%- else %}
Original file line number Diff line number Diff line change @@ -74,8 +74,9 @@ source .venv/bin/activate
7474make setup
7575# Optionally, provision default local stack
7676make install-stack-local
77- # Start the ZenML UI locally (recommended, but optional)
78- zenml login --local
77+ # Start the ZenML UI locally (recommended, but optional);
78+ # the default username is "admin" with an empty password
79+ zenml up
7980# Run the pipeline included in the project
8081python run.py
8182```
You can’t perform that action at this time.
0 commit comments