Igor Wiese
06/08/2022, 1:34 AMpsql -U postgres -d orchest_api
UPDATE settings
SET value = '{"value": false}'
WHERE name='AUTH_ENABLED';
however, there is no database called settings in my Postgre.
How should I proceed?
In my version, there is a different way to remove the authentication?juanlu
06/08/2022, 7:31 AMAUTH_ENABLED
to False
, hope it helps!Yannick
06/08/2022, 8:06 AM$XDG_CONFIG_HOME/orchest/config.json
or ~/.config/orchest/config.json
.
You can then edit this file and set AUTH_ENABLED
to false
. That should do the trick (it might be that a restart is required I don't remember).is_authenticated
(source code link).Igor Wiese
06/08/2022, 1:24 PMAUTH_ENABLED
= false
. I am running it in a ./orchest start --dev, to reflect some changes I've been testing. I will try to find a solution. Maybe it is better to re-install to the newer version.
:)Yannick
06/08/2022, 2:24 PMconfig.json
should be picked up immediately. Alternatively you can just do ./orchest stop && ./orchest start --dev