Hi everyone, New here, so I hope this is the righ...
# ask-community
a
Hi everyone, New here, so I hope this is the right channel to ask this.. Does anyone have experience with Prefect OSS running on a Windows server where multiple users can deploy to the same installation? Here is what I am trying to do: I have prefect server running from a conda environment (prefect-env) and I use deploy my py scripts from their respective conda environments with prefect installed and their own respective dependencies. I have workpools created and assigned using these other environments (subprocess). My flows and deployments all appear and run fine. However, I am trying to get the same for my colleague who is another user on the same machine. he has prefect installed in his conda environments as well and deployment via CLI is successful, but nothing shows up on the dashboard. I've tried adding PREFECT__BACKEND__ADDRESS with the URL to his User environment variables, but no luck. I'm quite new to Prefect so not sure if this is a config issue or something to do with user permissions. Any advice or resource would be appreciated. TIA 🙏
a
Hey @Ahmed! If your colleague wants to use the same Prefect API instance, you’ll need set the
PREFECT_API_URL
setting on their machine to point at the server you set up. Since your flow runs are showing up correctly, I’m guessing that you have that set correctly, so you can get the value by running
prefect config view
.
a
Thanks so much @alex! That did the trick 🙌
🎉 1