UNPKG

1.22 kBJavaScriptView Raw
1/* Copyright 2017 Agneta Network Applications, LLC.
2 *
3 * Source file: main/config.js
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17var error = require('./error');
18
19var port = parseFloat(process.env.PORT) || 8181;
20var protocol = process.env.PROTOCOL || 'https';
21var hostName = process.env.HOST_NAME || 'localhost';
22var host = process.env.ENDPOINT || 'localhost';
23var env = process.env.NODE_ENV || 'development';
24
25
26//-------------------------------------
27
28if (!port) {
29 error.config(port, 'PORT');
30}
31
32var result = {
33 port: port,
34 host: host,
35 protocol: protocol,
36 env: env,
37 hostName: hostName,
38 socket: {
39 path: '/socket'
40 },
41};
42
43console.log(result);
44
45module.exports = result;