AT Protocol OAuth template in Deno, Hono, HTMX

add production base url

+1 -1
+1 -1
main.tsx
··· 6 6 const app = new Hono(); 7 7 8 8 export const oauth = createATProtoOAuth({ 9 - baseUrl: "http://127.0.0.1:8000/", 9 + baseUrl: "https://atproto-oauth-deno-demo.zeu.deno.net", // or for local dev: "http://127.0.0.1:8000/", 10 10 appName: "AT Protocol OAuth Example App", 11 11 cookieSecret: Deno.env.get("COOKIE_SECRET")!, 12 12 storage: new MemoryStorage(),