feat(env-setup): use a local file as default in sqlite (#124)

This commit is contained in:
Daniel David Sintimbrean
2025-04-09 02:57:48 +02:00
committed by GitHub
parent 711c733b50
commit 33a43fcf14

View File

@@ -57,7 +57,7 @@ export async function setupEnvironmentVariables(
if (options.database === "sqlite" && options.dbSetup !== "turso") {
if (!envContent.includes("TURSO_CONNECTION_URL")) {
envContent += "\nTURSO_CONNECTION_URL=http://127.0.0.1:8080";
envContent += "\nTURSO_CONNECTION_URL=file:./local.db";
}
}
}