Reputation: 21
ballerina run HelloService.bal will keep tailing the log in the terminal. Is there any way that we can run this in background ?
Upvotes: 0
Views: 107
Reputation: 634
As with any Unix process, just add & to the end of the command line. E.g.:
ballerina run HelloService.bal &
Upvotes: 3