hello everyone, pyflyte run --remote -p my-project...
# flyte-deployment
t
hello everyone, pyflyte run --remote -p my-project -d development my-project.py browser_test_wf by running it like this. I can run my workflow on my local docker flyte runtime. How can I run this on my computer on the docker flyte runtime installed on my server?
h
Create ~/.flyte/config.yaml manually: admin: endpoint: "<REMOTE_FLYTE_HOST>" insecure: true Then, pyflyte will use this config when running commands. I don't recall if pyflyte config init exist as a command. But if you have flytectl, you can run flytectl config init --host=<REMOTE_FLYTE_HOST> --insecure
a
flytectl config init --host=<REMOTE_FLYTE_HOST> --insecure
@thousands-airline-37812 this one should work