16 lines
343 B
TypeScript
16 lines
343 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const MontonioServerEnvSchema = z
|
|
.object({
|
|
secretKey: z
|
|
.string({
|
|
required_error: `Please provide the variable MONTONIO_SECRET_KEY`,
|
|
})
|
|
.min(1),
|
|
apiUrl: z
|
|
.string({
|
|
required_error: `Please provide the variable MONTONIO_API_URL`,
|
|
})
|
|
.min(1),
|
|
});
|