system.ts 527 B

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