add project structure documentation
This commit is contained in:
@ -5,6 +5,7 @@
|
|||||||
"test": "echo \"Error: no test specified\" && exit 1",
|
"test": "echo \"Error: no test specified\" && exit 1",
|
||||||
"build": "bun build ./src/index.ts --compile --target bun --minify-whitespace --minify-syntax --minify-identifiers --outfile dist/server",
|
"build": "bun build ./src/index.ts --compile --target bun --minify-whitespace --minify-syntax --minify-identifiers --outfile dist/server",
|
||||||
"dev": "bun run --watch src/index.ts",
|
"dev": "bun run --watch src/index.ts",
|
||||||
|
"map": "madge --image structure.svg src/index.ts",
|
||||||
"route:sync": "bun run ./scripts/sync-routes.ts",
|
"route:sync": "bun run ./scripts/sync-routes.ts",
|
||||||
"env:publish": "bun run ./scripts/create-example-env.ts"
|
"env:publish": "bun run ./scripts/create-example-env.ts"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -1 +1,9 @@
|
|||||||
export const loginFromSystemService = (userId: string) => {};
|
import { UserHeaderInformation } from "../../../helpers/http/userHeader/getUserHeaderInformation/types";
|
||||||
|
import { createUserSessionService } from "../../userSession/services/createUserSession.service";
|
||||||
|
|
||||||
|
export const loginFromSystemService = (
|
||||||
|
userId: string,
|
||||||
|
userHeaderInfo: UserHeaderInformation
|
||||||
|
) => {
|
||||||
|
// const userSession = await createUserSessionService()
|
||||||
|
};
|
||||||
|
|||||||
1261
structure.svg
Normal file
1261
structure.svg
Normal file
File diff suppressed because it is too large
Load Diff
|
After Width: | Height: | Size: 118 KiB |
Reference in New Issue
Block a user