Skip to content

Commit a3a50f4

Browse files
committed
changing login
1 parent f5951d5 commit a3a50f4

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

Diff for: copier.yml

+1-1
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 up"
130+
echo " zenml login --local"
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."

Diff for: template/Makefile

+1-1
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 connect --url "{{zenml_server_url}}"
5+
zenml login "{{zenml_server_url}}"
66

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

Diff for: template/README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,8 @@ 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-
# the default username is "admin" with an empty password
79-
zenml up
77+
# Start the ZenML UI locally (recommended, but optional)
78+
zenml login --local
8079
# Run the pipeline included in the project
8180
python run.py
8281
```

0 commit comments

Comments
 (0)