system.ts 503 B

1234567891011121314151617
  1. export const GrowiServiceType = {
  2. cloud: 'cloud',
  3. privateCloud: 'private-cloud',
  4. onPremise: 'on-premise',
  5. others: 'others',
  6. } as const;
  7. export const GrowiDeploymentType = {
  8. officialHelmChart: 'official-helm-chart',
  9. growiDockerCompose: 'growi-docker-compose',
  10. node: 'node',
  11. others: 'others',
  12. } as const;
  13. export type GrowiServiceType = typeof GrowiServiceType[keyof typeof GrowiServiceType]
  14. export type GrowiDeploymentType = typeof GrowiDeploymentType[keyof typeof GrowiDeploymentType]