edward icon indicating copy to clipboard operation
edward copied to clipboard

Allow launching standalone backended services

Open theindexer opened this issue 7 years ago • 0 comments

I'm trying to launch a service in dev mode or in prod mode. They are sufficiently different modes as to have two different build steps.

I could have two named targets, but personally I'd like to do -b service:dev or service:prod.

If there's another existing or proposed solution for this, I'd be down for that too.

Desired behavior:

$ edward start -b myservice:local myotherservice:local
$ <OK_MESSAGE>

Current behavior:

$edward start -b myservice:local myotherservice:local
$ Error: At least one service or group must be specified

Workaround:

$edward start -b myservice:local myservice
$ <OK_MESSAGE>
$edward start -b myotherservice:local myotherservice
$ <OK_MESSAGE>

theindexer avatar Jun 20 '18 21:06 theindexer