doc: code architecture doc + contributing guide for backend (#2953)

* architecture doc

* agents and contributor md guides

* fix: userStore
This commit is contained in:
Daniel Salazar
2026-05-08 13:51:41 -07:00
committed by GitHub
parent 46a56e474b
commit 960bbb6965
6 changed files with 304 additions and 0 deletions
+1
View File
@@ -73,6 +73,7 @@
"validator": "^13.15.35"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/busboy": "^1.5.4",
"@types/node": "^24.0.0",
"chai": "^4.3.7",
+1
View File
@@ -43,6 +43,7 @@ export interface UserRow {
requires_email_confirmation?: boolean;
/** Metadata JSON blob; decoded on read when the DB returns it as a string. */
metadata?: Record<string, unknown>;
password?: string;
[k: string]: unknown;
}