M. Lanza
M. Lanza
I'd argue no serious system will get by without intermittent background jobs. I'm sure there are options for implementing this, but using the docs to make the concern a low-hanging...
I may have been mistaken in thinking it reasonable to connect to and interact with an RDMBS from a FaaS, e.g. Cloudflare Workers. But I'm not entirely certain. I am...
Here's code which worked in Deno Deploy with the exception that my connection string is PRIVATE: ``` import { listenAndServe } from "https://deno.land/[email protected]/http/mod.ts"; import { Pool } from "https://deno.land/x/postgres/mod.ts"; const...
Are you suggesting Walrus won't be modified to overcome the deficit? I chose `char(n)` because it's more efficient than `varchar(n)` and because the desired field is always fixed length. I'd...
This is very helpful. Thank you for taking the time to make such a thorough reply.
Wondering if calling a table 'tables', a potential reserved word, I renamed the table to `tabletops` and it had the same result.
Reading that Walrus' handling of `char` was the culprit, I used the suggestion of using `varchar` instead and that does solve the immediate issue. It does not overcome that fact...
@Souviut - The command line tool looks for the `.ts` file. I changed the one it generated to `.js` and it didn't know where the file was. I am not...
I just tested. I wrote an untyped function and called it directly in the `hello-world` example: ```js function hello(name){ return `Hello ${name}.` } ``` When I attempted to deploy I...
That worked. Thank you! But I'll leave this this open. In case the supabase team wants to allow `.js` files to be deployed. I think it will alleviate a world...