authUserAdd script now references argon2 through authentication-module
[websub-hub] / bin / dumpConfig.js
1 #!/usr/bin/env node
2 /* eslint-disable node/shebang */
3
4 'use strict';
5
6 const Config = require('../config');
7 const config = new Config(process.env.NODE_ENV);
8
9 console.log(config);