From 23e44a5ce4a38e1fbc16ca8be9bfbfaedce77338 Mon Sep 17 00:00:00 2001 From: Rory& Date: Tue, 10 Feb 2026 23:01:35 +0100 Subject: [PATCH] Reword sqlite error --- src/util/util/Database.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/util/util/Database.ts b/src/util/util/Database.ts index 52168e9a0..805a9c18c 100644 --- a/src/util/util/Database.ts +++ b/src/util/util/Database.ts @@ -50,7 +50,14 @@ if (!isHeadlessProcess) { let hasWarnedSqlite = false; if (isSqlite && !hasWarnedSqlite) { hasWarnedSqlite = true; - console.log(`[Database] ${red(`You are running sqlite! Please keep in mind that we recommend setting up a dedicated database!`)}`); + console.log( + `[Database] ${red(`You do not have a database configured. This implies that it will try to use SQLite, which has been broken for a while and is unlikely to see a real fix any time soon.`)}`, + ); + console.log(`[Database] ${red(`Please set up a PostgreSQL database instead: https://docs.spacebar.chat/setup/server/database/.`)}`); + console.log( + `[Database] ${red(`Alternatively, if you're able to install Nix (except MacOSX), and are trying to run a quick and dirty localhost instance: nix run .\\#testVm.config.system.build.vm, then open a client and connect to http://localhost:8080`)}`, + ); + console.log(`[Database] ${red(`If you would like to try *anyways*, see the error below:`)}`); try { const _ = require("sqlite3"); } catch (e) {