Sami
Sami
Same here. I'm on Mac and my colleague is on Windows. We're running the same codebase. His works fine, mine errors out after the first request. Not sure if this...
Bit the bullet and moved to ngrok... for our use case this was enough: https://philna.sh/blog/2021/03/15/restart-app-not-tunnel-ngrok-nodemon/
Nice, this works ```typescript import Elysia from "elysia"; import type { AuthObject, ClerkClient } from "elysia-clerk"; type SignedInAuthObject = Extract; const authContext = new Elysia().resolve({ as: "scoped" }, (ctx) =>...
Doesn't work for me :/ ```typescript // index.ts export const app = new Elysia() .group("/public", (app) => app.use(healthRoute).group("/webhooks", (app) => app.use(clerkRoute)).use(stripeRoute), ) .group("", (app) => app.use(clerkPlugin()).use(someRoute)) .listen(config.PORT); ``` ```typescript //...
good news - we've built a project inspired by AutoGen for TypeScript! our goal is to end up having parity with AutoGen while also focusing on developer experience and production-level...