Luca Schneider
10/07/2022, 7:22 PMZanie
10/07/2022, 7:26 PMPREFECT_API_URL
to the server’s IP? (including port and /api
)PREFECT_ORION_UI_API_URL
to your server’s IP on the server so that the UI directs client traffic to the correct API.Luca Schneider
10/07/2022, 7:34 PMos.environ['PREFECT_API_URL']=…
was not enoughprefect config set PREFECT_API_URL=…
and it worked…Zanie
10/07/2022, 7:37 PMPekka
11/01/2022, 2:05 PMZanie
11/01/2022, 3:02 PMtemporary_settings
context manager?Pekka
11/01/2022, 3:13 PMwith prefect.settings.temporary_settings(updates={prefect.settings.PREFECT_API_URL: '<http://localhost:4200/api/'}>):
would be the Perfect solution