Luca Schneider
10/07/2022, 7:22 PMZanie
PREFECT_API_URL to the server’s IP? (including port and /api)Zanie
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 enoughLuca Schneider
10/07/2022, 7:34 PMprefect config set PREFECT_API_URL=… and it worked…Zanie
Pekka
11/01/2022, 2:05 PMZanie
temporary_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 solutionPekka
11/01/2022, 3:14 PM