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
This commit is contained in:
AskIt
2026-01-26 00:27:53 +01:00
parent e7342087a5
commit 52e7360c1f
2 changed files with 1 additions and 4 deletions
-3
View File
@@ -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
+1 -1
View File
@@ -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",