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
high-park-82026
02/27/2025, 3:35 PM
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