aboutsummaryrefslogblamecommitdiff
path: root/config/env.js
blob: 6d69000943b3d4c13b9bf5a5737bdc7485378013 (plain) (tree)
1
2
3
4
5
6





                                                                           
require('dotenv').config();
module.exports = {
  port: process.env.PORT || 8080,
  mongoUrl: process.env.DB_CONN || "mongodb://localhost/playground_db",
  masterKey: process.env.APP_SECRET || "you-should-use-something-different"
};