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>
This commit is contained in:
Alireza Hassani
2026-07-22 21:39:51 +03:30
co-authored by Cursor
parent bb59d5e9ba
commit 016cc15bf0
32 changed files with 6159 additions and 37 deletions
+10
View File
@@ -0,0 +1,10 @@
import { Module } from '@nestjs/common';
import { InternalSslController } from './internal-ssl.controller';
import { InternalSslService } from './internal-ssl.service';
import { SslSyncTokenGuard } from './ssl-sync-token.guard';
@Module({
controllers: [InternalSslController],
providers: [InternalSslService, SslSyncTokenGuard],
})
export class InternalSslModule {}