From 6e5d21ce548db04e9926ef7dfc3c1a5945d61aed Mon Sep 17 00:00:00 2001 From: Izan Gil <66965250+SrIzan10@users.noreply.github.com> Date: Mon, 6 May 2024 21:56:08 +0200 Subject: [PATCH] fix: turso client url not right --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 72ba1fd..18d1121 100644 --- a/src/index.ts +++ b/src/index.ts @@ -17,8 +17,8 @@ const devTeam = [ ] const turso = createClient({ - url: process.env.TURSO_URL!, - authToken: process.env.TURSO_TOKEN!, + url: process.env.DB_URL!, + authToken: process.env.DB_TOKEN!, }) const octokit = new Octokit({ auth: process.env.GH_API_TOKEN! }); const db = drizzle(turso, { schema })