@Hyperdrive ๐ if you want access to beta, see above!
@Hyperdrive
if you want access to beta, see above!

Once the command has finished running, your connector will appear in Zero Trust.This doesn't happen for me - it stays empty ("No connectors installed"), even though the command ran successfully in my terminal. Any idea what I could be doing wrong?
systemd or similar). For initial setup it might be easier to do it as cloudflared tunnel run <NAME>
cloudflared does, and that's what needs to be reachable by your DB.let db: DbConnection | null = null;
let dbUrl: string | null = null:
// URL would come from `env.URL` or similar secret stored with the Worker
const getDb(url: string) => {
if(dbUrl !== url || db = null) {
db = new DbConnection(url);
dbUrl = url;
}
return db;
};