Looks nice and has a cool name
I don’t mind using an external tool if it has a small footprint and doesn’t interfere with Wappler but the FR would be nice for others who don’t want to work with CLI and yaml config files.
Do you use it?
Any considerations when using it with Wappler? What does it replace effectively?
How do you prevent wappler starting the server? By removing the handler?
Lando would be a great example of why this FR could change everything for Wappler:
I could create a SC workflow to manage lando CLI from a custom SC action that spawns a child process:
const { exec } = require('child_process');
exec(‘lando start', (error, stdout, stderr) => {
if (error) {
console.error(`exec error: ${error}`);
return;
}
console.log(`stdout: ${stdout}`);
console.error(`stderr: ${stderr}`);
});