Skip to content

Commit 5b9b03a

Browse files
committed
Revert "changing login"
This reverts commit a3a50f4.
1 parent a3a50f4 commit 5b9b03a

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

copier.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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."

template/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ stack_name ?= e2e_template_stack
22

33
{%- if zenml_server_url != '' %}
44
remote-login:
5-
zenml login "{{zenml_server_url}}"
5+
zenml connect --url "{{zenml_server_url}}"
66

77
setup: remote-login
88
{%- else %}

template/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,9 @@ source .venv/bin/activate
7474
make setup
7575
# Optionally, provision default local stack
7676
make 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
8081
python run.py
8182
```

0 commit comments

Comments
 (0)