Skip to content

Commit

Permalink
Fix PORT env vars for AvaTax
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysztofzuraw committed Oct 29, 2024
1 parent ed729b6 commit 8a863ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/avatax/src/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export const env = createEnv({
MANIFEST_APP_ID: z.string().optional().default("saleor.app.avatax"),
OTEL_ENABLED: booleanSchema.optional().default("false"),
OTEL_SERVICE_NAME: z.string().optional(),
PORT: z.number().optional().default(3000),
PORT: z.coerce.number().optional().default(3000),
REST_APL_ENDPOINT: z.string().optional(),
REST_APL_TOKEN: z.string().optional(),
SECRET_KEY: z.string(),
Expand Down

0 comments on commit 8a863ed

Please sign in to comment.