Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ require('dotenv').config();

const port = process.env.PORT || 5000;
const uri = process.env.URI;
const TIMEOUT = 10000
const TIMEOUT = 10000;

//connects backend to the MongoDB atlas database via mongoose.
const connector = mongoose.connect(uri, { useNewUrlParser: true, useUnifiedTopology: true })
Expand Down