add deploy script, fix production paths, use port 3006

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-11 13:01:59 +01:00
parent ff311b5fac
commit a109cfb3c1
6 changed files with 122 additions and 6 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import { z } from "zod"
const envSchema = z.object({
DATABASE_URL: z.string().url(),
PORT: z.coerce.number().default(3001),
PORT: z.coerce.number().default(3006),
})
export const env = envSchema.parse(process.env)