mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-12-29 03:43:16 +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'
|
||
|
})
|