Skip to content

Commit

Permalink
fix db name
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrastopoulos committed Feb 25, 2024
1 parent c0722ea commit 0203142
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import morgan from "morgan";

const port = process.env.SERVER_PORT || 3080;
const database = process.env.MONGO_URI || "mongodb://localhost:27017";
const dbName = process.env.MONGO_DB || "lost_and_found_dev";
const dbName = process.env.MONGO_DB || undefined;

// https://medium.com/bb-tutorials-and-thoughts/how-to-develop-and-build-react-app-with-nodejs-backend-typescript-version-27a6a283a7c5
// https://github.com/bbachi/react-nodejs-typescript-example
Expand Down

0 comments on commit 0203142

Please sign in to comment.