|
|
@ -5,9 +5,9 @@ const merge = require('merge') |
|
|
|
const colors = require('colors') |
|
|
|
const colors = require('colors') |
|
|
|
|
|
|
|
|
|
|
|
const DEFAULT_OPTIONS = { |
|
|
|
const DEFAULT_OPTIONS = { |
|
|
|
protocol: "http", |
|
|
|
protocol: 'http', |
|
|
|
host: "localhost", |
|
|
|
host: 'localhost', |
|
|
|
port: "8088" |
|
|
|
port: '8088' |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
module.exports = (embark) => { |
|
|
|
module.exports = (embark) => { |
|
|
@ -63,5 +63,4 @@ module.exports = (embark) => { |
|
|
|
process.on('SIGINT', kill) // catch ctrl-c
|
|
|
|
process.on('SIGINT', kill) // catch ctrl-c
|
|
|
|
process.on('SIGTERM', kill) // catch kill
|
|
|
|
process.on('SIGTERM', kill) // catch kill
|
|
|
|
process.on('exit', killRemixD) |
|
|
|
process.on('exit', killRemixD) |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|