commented out hard coded plugin paths

This commit is contained in:
Daniel Hübleitner
2019-07-27 18:28:41 +02:00
parent e3a3d15bab
commit 8d6b987db5
+3 -3
View File
@@ -7,9 +7,9 @@ import { FrontblockApiConf } from "frontblock/FrontblockApiClient"
type pluginEntry = {pluginPath:string, conf?:any} type pluginEntry = {pluginPath:string, conf?:any}
const pluginList:pluginEntry[] = [ const pluginList:pluginEntry[] = [
{ pluginPath: '../../paymentmanager/static/Plugin', conf:<FrontblockApiConf>{ apiHost: 'localhost' /*/ 'api.testnet.frontblock.me' */, apiPort: 10001 } }, //{ pluginPath: '../../paymentmanager/static/Plugin', conf:<FrontblockApiConf>{ apiHost: 'localhost' /*/ 'api.testnet.frontblock.me' */, apiPort: 10001 } },
{ pluginPath: '../../htmlsupplier/static/Plugin' }, //{ pluginPath: '../../htmlsupplier/static/Plugin' },
{ pluginPath: 'frontblock/FrontblockApiClient', conf:<FrontblockApiConf>{ apiHost: 'localhost' /*/ 'api.testnet.frontblock.me' */, apiPort: 10001 } } { pluginPath: 'frontblock/FrontblockApiClient', conf:<FrontblockApiConf>{ apiHost: /*/ 'localhost' */ 'api.testnet.frontblock.me' , apiPort: 10001 } }
] ]
const express = require('express') const express = require('express')