nightwatch128
nightwatch128
Explore posts from servers
TTCTheo's Typesafe Cult
Created by nightwatch128 on 3/7/2025 in #questions
Uploadthing with Vercel Platforms example
Hi all! I am using the Vercel Platforms example (https://github.com/vercel/platforms). I am trying to add UT to the subdomain apps. e.g. custom-domain.com/app. I have added it and when I try to upload - it uploads the image! - but on the client side the dropzone component always shows the loading spinner until I refresh the page... I have absolutely no idea why this is happening. From my digging I found a network call to https://sea1.ingest.uploadthing.com/** that is a PUT request, made during upload of a file. A status for this request is never shown in the network tab. Any help is appreciated!
2 replies
DTDrizzle Team
Created by nightwatch128 on 11/10/2024 in #help
TypeError: client.migrate
I am getting this error TypeError: client.migrate is not a function with Kysely + Drizzle Kit + Turso + Bun + Nextjs when I drizzle-kit push. My config (in the root of nextjs project):
import { defineConfig } from "drizzle-kit";

if (!process.env.TURSO_DATABASE_NAME) {
throw new Error("TURSO_DATABASE_NAME is missing");
}

if (!process.env.TURSO_ORG) {
throw new Error("TURSO_ORG is missing");
}

if (!process.env.TURSO_GROUP_AUTH_TOKEN) {
throw new Error("TURSO_GROUP_AUTH_TOKEN is missing");
}

const url = `libsql://${process.env.TURSO_DATABASE_NAME}-${process.env.TURSO_ORG}.turso.io`;

export default defineConfig({
schema: "./src/core/**/*.sql.ts",
out: "./src/migrations",
dialect: "turso",
dbCredentials: {
url,
authToken: process.env.TURSO_GROUP_AUTH_TOKEN,
},
});
import { defineConfig } from "drizzle-kit";

if (!process.env.TURSO_DATABASE_NAME) {
throw new Error("TURSO_DATABASE_NAME is missing");
}

if (!process.env.TURSO_ORG) {
throw new Error("TURSO_ORG is missing");
}

if (!process.env.TURSO_GROUP_AUTH_TOKEN) {
throw new Error("TURSO_GROUP_AUTH_TOKEN is missing");
}

const url = `libsql://${process.env.TURSO_DATABASE_NAME}-${process.env.TURSO_ORG}.turso.io`;

export default defineConfig({
schema: "./src/core/**/*.sql.ts",
out: "./src/migrations",
dialect: "turso",
dbCredentials: {
url,
authToken: process.env.TURSO_GROUP_AUTH_TOKEN,
},
});
9 replies