0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-30 08:52:38 +00:00

Revert extraneous Config changes

Looks like these were part of something else? In any case it conflicts with #1981 so just undoing these changes.
This commit is contained in:
Trevor Buckner
2022-01-28 00:38:00 -05:00
parent 22b80ffbb2
commit 039e4dd4e5
4 changed files with 4 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ const token = require('./token.js');
const config = require('nconf')
.argv()
.env({ lowerCase: true }) // Load environment variables
.file('environment', { file: `${__dirname}/../config/${process.env.NODE_ENV}.json` })
.file('environment', { file: `config/${process.env.NODE_ENV}.json` })
.file('defaults', { file: 'config/default.json' });
//let oAuth2Client;