What is the format of the URL in `supabase db remo...
# help
k
What is the format of the URL in
supabase db remote set URL
? An URL that works with psql causes an error with supabase: Error: Error parsing connection string: Make sure the URL is percent-encoded.
WTF
Copy code
if parsedUrl.String() != url {
    return errors.New("Error parsing connection string: Make sure the URL is percent-encoded.")
}
do I have to guess how golang normalises an URL to be able to use it with supabase CLI?