quickly
Version:
Quickly setup dependent services and servers for local development
20 lines (19 loc) • 355 B
JavaScript
/*
The system should ask which
config to run for a given service
*/
module.exports = {
test: [{
name: 'first config',
exec: 'echo',
args: 'running test 1'
}, {
name: 'second config',
exec: 'echo',
args: 'running test 2'
}, {
// no name, form it from exec and args
exec: 'echo',
args: 'running test 3'
}]
};