selfhosting: p2 fixed default configs and guide + some other errors (#2903)

* fix: ollama support

* fix: more self host cleanup

* fix: bad auth

* fix: more session cookie stuff

* allow emailclient

Co-authored-by: Copilot <copilot@github.com>

* fix: broken migration

* fix: full-stack comment

* fix: hardcoded perms

* new docker build steps

---------

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
Daniel Salazar
2026-05-04 18:14:23 -07:00
committed by GitHub
co-authored by Copilot
parent d8cc884f01
commit 50679e6a01
29 changed files with 538 additions and 1196 deletions
@@ -159,9 +159,11 @@ export class MySQLDatabaseClient extends AbstractDatabaseClient {
insertId?: number;
affectedRows?: number;
};
const affectedRows = header.affectedRows ?? 0;
return {
insertId: header.insertId ?? 0,
anyRowsAffected: (header.affectedRows ?? 0) > 0,
affectedRows,
anyRowsAffected: affectedRows > 0,
};
}