source: trip-planner-front/node_modules/karma/lib/constants.js@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.0 KB
Line 
1'use strict'
2
3const fs = require('graceful-fs')
4const path = require('path')
5
6const pkg = JSON.parse(fs.readFileSync(path.join(__dirname, '/../package.json')).toString())
7
8exports.VERSION = pkg.version
9
10exports.DEFAULT_PORT = process.env.PORT || 9876
11exports.DEFAULT_HOSTNAME = process.env.IP || 'localhost'
12exports.DEFAULT_LISTEN_ADDR = process.env.LISTEN_ADDR || '0.0.0.0'
13
14// log levels
15exports.LOG_DISABLE = 'OFF'
16exports.LOG_ERROR = 'ERROR'
17exports.LOG_WARN = 'WARN'
18exports.LOG_INFO = 'INFO'
19exports.LOG_DEBUG = 'DEBUG'
20exports.LOG_LOG = 'LOG'
21exports.LOG_PRIORITIES = [
22 exports.LOG_DISABLE,
23 exports.LOG_ERROR,
24 exports.LOG_WARN,
25 exports.LOG_LOG,
26 exports.LOG_INFO,
27 exports.LOG_DEBUG
28]
29
30// Default patterns for the pattern layout.
31exports.COLOR_PATTERN = '%[%d{DATE}:%p [%c]: %]%m'
32exports.NO_COLOR_PATTERN = '%d{DATE}:%p [%c]: %m'
33
34// Default console appender
35exports.CONSOLE_APPENDER = {
36 type: 'console',
37 layout: {
38 type: 'pattern',
39 pattern: exports.COLOR_PATTERN
40 }
41}
42
43exports.EXIT_CODE = '\x1FEXIT'
Note: See TracBrowser for help on using the repository browser.