2018-10-21 18:18:00 +00:00
|
|
|
#!/usr/bin/env node
|
|
|
|
|
|
|
|
// ****************************************************************************
|
|
|
|
// THIS IS FOR DEV PERROSES ONLY AND WILL NOT BE PART OF THE PUBLISHED PACKAGE
|
2018-10-19 14:38:50 +00:00
|
|
|
// Before opening a PR you should build and test your changes using bin/balena
|
2018-10-21 18:18:00 +00:00
|
|
|
// ****************************************************************************
|
|
|
|
|
|
|
|
// We boost the threadpool size as ext2fs can deadlock with some
|
|
|
|
// operations otherwise, if the pool runs out.
|
|
|
|
process.env.UV_THREADPOOL_SIZE = '64';
|
|
|
|
|
|
|
|
process.env['TS_NODE_PROJECT'] = require('path').dirname(__dirname);
|
|
|
|
require('coffeescript/register');
|
|
|
|
require('ts-node/register');
|
|
|
|
require('../lib/app');
|