From bfe708d48f603998a1f2c4cad4a6f9f8683dc18f Mon Sep 17 00:00:00 2001 From: Raphael Kabo Date: Fri, 12 May 2023 16:54:06 +0100 Subject: Migrate to Typescript --- src/config/database-example.js | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/config/database-example.js (limited to 'src/config/database-example.js') diff --git a/src/config/database-example.js b/src/config/database-example.js new file mode 100644 index 0000000..4aa4c4d --- /dev/null +++ b/src/config/database-example.js @@ -0,0 +1,3 @@ +module.exports = { + 'url' : 'mongodb://localhost:27017/gathio' // For local MongoDB connection +}; -- cgit v1.2.3 From 453c08463bf46e568c8a5018416ad88498a73f29 Mon Sep 17 00:00:00 2001 From: Raphael Kabo Date: Fri, 12 May 2023 16:54:06 +0100 Subject: linting: source files --- src/config/database-example.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/config/database-example.js') diff --git a/src/config/database-example.js b/src/config/database-example.js index 4aa4c4d..ca7bdcc 100644 --- a/src/config/database-example.js +++ b/src/config/database-example.js @@ -1,3 +1,3 @@ module.exports = { - 'url' : 'mongodb://localhost:27017/gathio' // For local MongoDB connection + url: "mongodb://localhost:27017/gathio", // For local MongoDB connection }; -- cgit v1.2.3