1// ptenv values for test environments2// 'testlocal' = run local dev server, 'testprod' = test against k8s deployment4export const ptenvLocal = 'testlocal' as const5export const ptenvTestprod = 'testprod' as const7export type Ptenv = typeof ptenvLocal | typeof ptenvTestprod9export const ptenvEnum = [ptenvLocal, ptenvTestprod] as const