I forget, isn’t Hyperdrive completely disabled in local?
I forget, isn’t Hyperdrive completely disabled in local?
4870f521c22c2295fdfaceef9b4aeca5.hyperdrive.local for the host.
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>
4870f521c22c2295fdfaceef9b4aeca5.hyperdrive.localsystemdcloudflared tunnel run <NAME>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;
};