31 lines
1.1 KiB
JavaScript
31 lines
1.1 KiB
JavaScript
const {addApiServer, addIndexer} = require('./definitions/ecosystem_settings');
|
|
const {readdirSync, readFileSync} = require("fs");
|
|
const path = require('path');
|
|
|
|
const apps = [];
|
|
const chainsRoot = path.join(path.resolve(), 'chains');
|
|
readdirSync(chainsRoot)
|
|
.filter(f => f.endsWith('.config.json') && !f.startsWith('example'))
|
|
.forEach(value => {
|
|
const configFile = readFileSync(path.join(chainsRoot, value))
|
|
const config = JSON.parse(configFile.toString());
|
|
const chainName = config.settings.chain;
|
|
if (config.api.enabled) {
|
|
const apiHeap = config.api.node_max_old_space_size;
|
|
apps.push(addApiServer(chainName, config.api.pm2_scaling, apiHeap));
|
|
}
|
|
if (config.indexer.enabled) {
|
|
const indexerHeap = config.indexer.node_max_old_space_size;
|
|
apps.push(addIndexer(chainName, indexerHeap));
|
|
}
|
|
});
|
|
|
|
// apps.push({
|
|
// name: 'hyperion-governor',
|
|
// namespace: 'hyperion',
|
|
// script: 'governor/server/index.js',
|
|
// watch: false,
|
|
// });
|
|
|
|
module.exports = {apps};
|