mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-15 12:34:17 +00:00
15 lines
419 B
JavaScript
15 lines
419 B
JavaScript
'use strict';
|
|
|
|
// Use local.env.js for environment variables that will be set when the server starts locally.
|
|
// Use for your api keys, secrets, etc. This file should not be tracked by git.
|
|
//
|
|
// You will need to set these on the server you deploy to.
|
|
|
|
module.exports = {
|
|
DOMAIN: 'http://localhost:9000',
|
|
SESSION_SECRET: 'dssweb-secret',
|
|
|
|
// Control debug level for modules using visionmedia/debug
|
|
DEBUG: ''
|
|
};
|