Supabase populates SUPABASE_DB_URL env variable by default in edge workers.
EDGE_WORKER_DB_URL needs to be manually created by the user, which makes it a hassle - I need to duplicate the password and in case I reset it, it needs to be regenerated.
This can't really by worked around from the user side as the edge workers can't call Deno.env.set.
Or at least allow passing it from options to EdgeWorker.start or have some global options like EdgeWorker.options that I can set before calling start.