system.ts 513 B

12345678910111213141516171819
  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 =
  14. (typeof GrowiServiceType)[keyof typeof GrowiServiceType];
  15. export type GrowiDeploymentType =
  16. (typeof GrowiDeploymentType)[keyof typeof GrowiDeploymentType];