We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f39efe0 commit 8a0421fCopy full SHA for 8a0421f
utilities/env.ts
@@ -18,13 +18,6 @@ const schema = z.object( {
18
SENTRY_PROJECT: z.string().min( 1 ),
19
SENTRY_AUTH_TOKEN: z.string().min( 1 ).startsWith( "sntrys_" ),
20
21
- S3_ENABLED: z.enum( [ "true", "false" ] ),
22
- S3_REGION: z.string().min( 1 ),
23
- S3_ENDPOINT: z.string().url(),
24
- S3_BUCKET_NAME: z.string().min( 1 ),
25
- S3_ACCESS_KEY_ID: z.string().min( 16 ).max( 128 ),
26
- S3_SECRET_ACCESS_KEY: z.string().min( 16 ).max( 128 ),
27
-
28
NEXT_PUBLIC_RECAPTCHA_ENABLED: z.enum( [ "true", "false" ] ),
29
NEXT_PUBLIC_RECAPTCHA_PUBLIC_KEY: z.string().length( 40 ).startsWith( "6Ld" ),
30
RECAPTCHA_SECRET_KEY: z.string().length( 40 ).startsWith( "6Ld" ),
utilities/s3.ts
0 commit comments