diff --git a/src/main.ts b/src/main.ts
index 2b9802ff828363d6d224b42ed6c53a9e54408e64..246dcdee2c2172951ed942e7a7f8c4522add120a 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -38,6 +38,8 @@ app.ws('/results/:id', async (ws, req) => {
     };
 });
 
-app.listen(80, () => {
-    console.log('Server is running on port 80');
+const PORT = 3002;
+
+app.listen(PORT, () => {
+    console.log(`Server is running on port ${PORT}`);
 });