From 52e7360c1f2db294efaa174cf42b87c3a73d0e67 Mon Sep 17 00:00:00 2001 From: AskIt Date: Mon, 26 Jan 2026 00:27:53 +0100 Subject: [PATCH] chore(config): Remove PORT environment variable configuration - Remove PORT environment variable comment from .env.example - Update start script to use hardcoded port 3000 instead of environment variable - Simplify server configuration by removing optional PORT override --- .env.example | 3 --- package.json | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.env.example b/.env.example index d8ab8f4..3c10070 100644 --- a/.env.example +++ b/.env.example @@ -3,9 +3,6 @@ # =========================================== # Copy this file to .env and fill in your values -# Server Port (Optional, defaults to 3000) -# PORT=3000 - # Database (Required) DATABASE_URL=postgresql://user:password@localhost:5432/synapsis diff --git a/package.json b/package.json index b74dc28..f077eb8 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "scripts": { "dev": "next dev --turbopack", "build": "next build", - "start": "next start -p ${PORT:-3000}", + "start": "next start -p 3000", "lint": "eslint", "db:generate": "drizzle-kit generate", "db:push": "drizzle-kit push",