feat: update port configurations for backend and frontend; adjust Dockerfile and docker-compose settings

This commit is contained in:
2025-07-31 17:36:19 +02:00
parent a39e22fab9
commit a2f22ec395
5 changed files with 31 additions and 16 deletions

View File

@@ -3,7 +3,7 @@ import cors from "cors";
import env from "dotenv";
env.config();
const app = express();
const port = 3001;
const port = 7001;
app.use(cors());
app.use(express.urlencoded({ extended: true }));