| 1 | export interface TemplateConfig { |
| 2 | variables: Record<string, string>; |
| 3 | domains: Array<{ |
| 4 | serviceName: string; |
| 5 | port: number; |
| 6 | path?: string; |
| 7 | host?: string; |
| 8 | }>; |
| 9 | env: Record<string, string>; |
| 10 | mounts: Array<{ |
| 11 | filePath: string; |
| 12 | content: string; |
| 13 | }>; |
| 14 | } |
| 15 | |
| 16 | export interface Template { |
| 17 | metadata: { |
nothing calls this directly
no outgoing calls
no test coverage detected