Files
unifi-voucher-site/app/config/config.js
Glenn de Haan 91bad12f52 Initial commit
2018-02-26 22:24:07 +01:00

25 lines
451 B
JavaScript

/**
* General config
*/
const config = {
application: {
name: "NodeExpress",
env: " (local)",
basePath: "/",
port: 3001,
bind: "0.0.0.0",
supportedBrowsers: [
"Chrome >= 52",
"Firefox >= 47",
"Safari >= 10",
"Edge == All",
"IE == 11"
]
},
session: {
secret: "averysecretstring"
}
};
module.exports = config;