gitignore add databaseurl .env
This commit is contained in:
parent
4719709602
commit
3486554f39
|
@ -3,7 +3,7 @@
|
|||
# dependencies
|
||||
/node_modules
|
||||
/.pnp
|
||||
/src/.env
|
||||
/.env
|
||||
.pnp.js
|
||||
# testing
|
||||
/coverage
|
||||
|
|
|
@ -9,7 +9,7 @@ const app = express();
|
|||
app.use(express.json());
|
||||
app.use(cors());
|
||||
|
||||
const PORT = process.env.PORT || 6000;
|
||||
const PORT = process.env.PORT || 5000;
|
||||
|
||||
app.listen(PORT, () => console.log(`The server has started on port: ${PORT}`));
|
||||
|
||||
|
|
Loading…
Reference in New Issue