mirror of
https://github.com/glenndehaan/unifi-voucher-site.git
synced 2026-04-05 00:44:18 -04:00
25 lines
451 B
JavaScript
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;
|