salmon-jelly-74771
07/28/2024, 8:31 PM# Create a FlyteRemote instance (replace with your actual configuration)
remote = FlyteRemote(config="/home/gga/.flyte/config-sandbox.yaml")
print(remote.address)
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.freezing-airport-6809
freezing-airport-6809
from flytekit.remote import FlyteRemote
from flytekit.configuration import Config
r = FlyteRemote(Config.for_sandbox())
freezing-airport-6809
from flytekit.remote import FlyteRemote
from flytekit.configuration import Config
r = FlyteRemote(Config.auto("...config-file-path.yaml"))