| 1234567891011121314151617 |
- export const GrowiServiceType = {
- cloud: 'cloud',
- privateCloud: 'private-cloud',
- onPremise: 'on-premise',
- others: 'others',
- } as const;
- export const GrowiDeploymentType = {
- officialHelmChart: 'official-helm-chart',
- growiDockerCompose: 'growi-docker-compose',
- node: 'node',
- others: 'others',
- } as const;
- export type GrowiServiceType = typeof GrowiServiceType[keyof typeof GrowiServiceType]
- export type GrowiDeploymentType = typeof GrowiDeploymentType[keyof typeof GrowiDeploymentType]
|