Files
backend/src/website-docs/website-docs.module.ts
T
Alireza HassaniandCursor 016cc15bf0 Add website API docs, SSL api-hosts, and git-only deploy workflow.
Serve public storefront docs at /docs/website, expose api.{domain} hosts for API SSL sync, and require push-then-pull deploys instead of rsync.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-22 21:39:51 +03:30

8 lines
196 B
TypeScript

import { Module } from '@nestjs/common';
import { WebsiteDocsController } from './website-docs.controller';
@Module({
controllers: [WebsiteDocsController],
})
export class WebsiteDocsModule {}