Skip to content

Commit

Permalink
fix: required ENVs
Browse files Browse the repository at this point in the history
  • Loading branch information
kdev committed Jun 12, 2024
1 parent 948c563 commit 3855455
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ export const env = createEnv({
isServer: true,
server: {
DISCORD_TOKEN: z.string().min(1),
DISCORD_CLIENT_ID: z.string().min(1),
DISCORD_DEV_GUILD_ID: z.string().min(1),
DISCORD_CLIENT_SECRET: z.string().min(1),
DISCORD_CLIENT_ID: z.string(),
DISCORD_DEV_GUILD_ID: z.string(),
DISCORD_CLIENT_SECRET: z.string(),
DISCORD_REDIRECT_URI: z.string().url().min(1),

DISCORD_ADMIN_ID: z.string().min(1),
Expand Down

0 comments on commit 3855455

Please sign in to comment.