bump 0.19.0, update readme with use cases, small fixes

- fix password strategy openapi tags
- fix cli run picking up memory if specified
- fix view transition chrome crash
This commit is contained in:
dswbx
2025-10-31 11:55:27 +01:00
parent 6093f4f46f
commit 5417aa174e
5 changed files with 86 additions and 48 deletions

View File

@@ -110,7 +110,10 @@ export async function makeAppFromEnv(options: Partial<RunOptions> = {}) {
// try to use an in-memory connection
} else if (options.memory) {
console.info("Using", c.cyan("in-memory"), "connection");
app = await makeApp({ server: { platform: options.server } });
app = await makeApp({
server: { platform: options.server },
connection: { url: ":memory:" },
});
// finally try to use env variables
} else {