tangled
alpha
login
or
join now
zeu.dev
/
atproto-oauth-deno
18
fork
atom
AT Protocol OAuth template in Deno, Hono, HTMX
18
fork
atom
overview
issues
pulls
pipelines
add production base url
zeu.dev
3 weeks ago
be479a2d
d74ffe84
+1
-1
1 changed file
expand all
collapse all
unified
split
main.tsx
+1
-1
main.tsx
···
6
6
const app = new Hono();
7
7
8
8
export const oauth = createATProtoOAuth({
9
9
-
baseUrl: "http://127.0.0.1:8000/",
9
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(),