balena-cli/bin/balena

12 lines
337 B
Plaintext
Raw Normal View History

2015-03-04 16:16:35 +00:00
#!/usr/bin/env node
// We boost the threadpool size as ext2fs can deadlock with some
// operations otherwise, if the pool runs out.
process.env.UV_THREADPOOL_SIZE = '64';
// Use fast-boot to cache require lookups, speeding up startup
require('fast-boot2').start({
cacheFile: __dirname + '/.fast-boot.json'
})
2015-03-04 16:16:35 +00:00
require('../build/app');