From a4384129ff180c94063d3e9c25772881c5638c1a Mon Sep 17 00:00:00 2001 From: Christin Mikolai Date: Tue, 28 Jul 2020 01:22:53 +0200 Subject: [PATCH] update gitignore --- .gitignore | 3 ++- config/database.js | 15 --------------- config/plugins.js | 10 ---------- 3 files changed, 2 insertions(+), 26 deletions(-) delete mode 100644 config/database.js delete mode 100644 config/plugins.js diff --git a/.gitignore b/.gitignore index c710d5a..c7558bf 100644 --- a/.gitignore +++ b/.gitignore @@ -115,4 +115,5 @@ build package-lock.json -# /config/database.js +/config/database.js +plugins.js diff --git a/config/database.js b/config/database.js deleted file mode 100644 index db6f74b..0000000 --- a/config/database.js +++ /dev/null @@ -1,15 +0,0 @@ -module.exports = ({ env }) => ({ - defaultConnection: 'default', - connections: { - default: { - connector: 'mongoose', - settings: { - client: 'mongo', - uri: env('MONGODB_URI'), - }, - options: { - ssl: true - } - }, - }, -}); diff --git a/config/plugins.js b/config/plugins.js deleted file mode 100644 index cdd961c..0000000 --- a/config/plugins.js +++ /dev/null @@ -1,10 +0,0 @@ -module.exports = ({ env }) => ({ - upload: { - provider: 'cloudinary', - providerOptions: { - cloud_name: env('CLOUDINARY_CLOUD_NAME'), - api_key: env('CLOUDINARY_API_KEY'), - api_secret: env('CLOUDINARY_API_SECRET'), - }, - }, -});