mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-23 23:54:13 +08:00
7 lines
147 B
JavaScript
7 lines
147 B
JavaScript
|
const proc = require('child_process');
|
||
|
|
||
|
// TODO: Swtich on env variables
|
||
|
proc.spawn('node', ['packages/nylas-api/app.js'], {
|
||
|
stdio: 'inherit'
|
||
|
})
|