server: Don't overwrite host, use service-core defaults
All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded
All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded
package: Increment version
This commit is contained in:
parent
1c85867278
commit
fbf2f5958c
2 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ export function run(http, orgPort, ctx) {
|
||||||
|
|
||||||
let port = orgPort || 4000
|
let port = orgPort || 4000
|
||||||
|
|
||||||
return server.listenAsync(port, '0.0.0.0')
|
return server.listenAsync(port)
|
||||||
.then(function() {
|
.then(function() {
|
||||||
ctx.log.event.info(`Server is listening on ${port} serving package ${packagePath}`)
|
ctx.log.event.info(`Server is listening on ${port} serving package ${packagePath}`)
|
||||||
ctx.log.info(`Server is listening on ${port} serving package ${packagePath}`)
|
ctx.log.info(`Server is listening on ${port} serving package ${packagePath}`)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "sc-helloworld",
|
"name": "sc-helloworld",
|
||||||
"version": "2.0.1",
|
"version": "2.0.2",
|
||||||
"description": "Hello World app for service core",
|
"description": "Hello World app for service core",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Loading…
Reference in a new issue