Update port to 3015

This commit is contained in:
2025-12-31 03:43:48 +00:00
parent 16f88f9031
commit 3122e23257
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
"description": "Idea and Feedback Form with PocketBase", "description": "Idea and Feedback Form with PocketBase",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "PORT=7001 bun run server.ts", "dev": "PORT=3015 bun run server.ts",
"start": "bun run server.ts" "start": "bun run server.ts"
}, },
"dependencies": { "dependencies": {
+1 -1
View File
@@ -67,7 +67,7 @@ app.get('/api/health', (c) => {
}); });
}); });
const PORT = Number(process.env.PORT || 7000); const PORT = Number(process.env.PORT || 3015);
console.log(`Idea & Feedback Form server running at http://localhost:${PORT}`); console.log(`Idea & Feedback Form server running at http://localhost:${PORT}`);