add project structure documentation

This commit is contained in:
rafiarrafif
2025-06-19 22:13:15 +07:00
parent 617444591f
commit eac67c1f58
3 changed files with 1271 additions and 1 deletions

View File

@ -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"
}, },

View File

@ -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

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 118 KiB