modify starting files and readme

This commit is contained in:
Daniel Avila 2023-03-06 18:17:43 -05:00
parent b9e9203a75
commit d93282640c
4 changed files with 90 additions and 41 deletions

View file

@ -4,7 +4,7 @@ const path = require('path');
const cors = require('cors');
const routes = require('./routes');
const app = express();
const port = process.env.PORT || 3050;
const port = process.env.PORT || 3080;
const projectPath = path.join(__dirname, '..', '..', 'client');
dbConnect().then(() => console.log('Connected to MongoDB'));