results in a platform error on the FlyteRemote config line.
I can access my local flyte dashboard at localhost:30080 and see the project, but there's no way to login (fails) and there's no button or way to activate it.
f
freezing-airport-6809
07/29/2024, 12:36 AM
are you trying to do this programmatically?
freezing-airport-6809
07/29/2024, 12:38 AM
You cannot directly point to the config file (maybe we should do that in the future)
Here is a code snippet
Copy code
from flytekit.remote import FlyteRemote
from flytekit.configuration import Config
r = FlyteRemote(Config.for_sandbox())
freezing-airport-6809
07/29/2024, 12:40 AM
OR
Copy code
from flytekit.remote import FlyteRemote
from flytekit.configuration import Config
r = FlyteRemote(Config.auto("...config-file-path.yaml"))