change server port from 3000 to 3100

This commit is contained in:
ZareMate 2025-12-26 19:45:02 +01:00
parent 1f720bbec3
commit 1f197899bd

View File

@ -5,7 +5,7 @@ const path = require("path");
const sqlite3 = require("sqlite3").verbose();
const app = express();
const PORT = process.env.PORT || 3000;
const PORT = process.env.PORT || 3100;
app.use(express.json());