UNPKG

opensaas

Version:

Create fully bundled SaaS application (Backend & Frontend) using an interactive CLI

9 lines (6 loc) 192 B
#!/usr/bin/env node import shell from 'shelljs'; export async function startServices(): Promise<void> { shell.exec('npm run provision', { silent: true }); shell.exec('npm run start'); }