feat(api): add secure Fastify skeleton

This commit is contained in:
chick
2026-07-16 11:36:24 +08:00
parent a86970d33b
commit 26c1bcc6da
8 changed files with 606 additions and 10 deletions
+10 -1
View File
@@ -1 +1,10 @@
export const apiWorkspaceReady = true;
export {
API_DEFAULT_HOST,
API_DEFAULT_PORT,
REDACT_PATHS,
buildApp,
createListenOptions,
} from './app.js';
export type { BuildAppOptions, ListenEnvironment, ListenOptions, ReadinessResult } from './app.js';
export { startApi } from './start.js';
export type { StartApiOptions } from './start.js';