From 8d6b987db52207adc0869e6f5a9cdbca9aa30e06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20H=C3=BCbleitner?= Date: Sat, 27 Jul 2019 18:28:41 +0200 Subject: [PATCH] commented out hard coded plugin paths --- src/FrontblockAdmin.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/FrontblockAdmin.ts b/src/FrontblockAdmin.ts index 73f043f..c78db21 100644 --- a/src/FrontblockAdmin.ts +++ b/src/FrontblockAdmin.ts @@ -7,9 +7,9 @@ import { FrontblockApiConf } from "frontblock/FrontblockApiClient" type pluginEntry = {pluginPath:string, conf?:any} const pluginList:pluginEntry[] = [ - { pluginPath: '../../paymentmanager/static/Plugin', conf:{ apiHost: 'localhost' /*/ 'api.testnet.frontblock.me' */, apiPort: 10001 } }, - { pluginPath: '../../htmlsupplier/static/Plugin' }, - { pluginPath: 'frontblock/FrontblockApiClient', conf:{ apiHost: 'localhost' /*/ 'api.testnet.frontblock.me' */, apiPort: 10001 } } + //{ pluginPath: '../../paymentmanager/static/Plugin', conf:{ apiHost: 'localhost' /*/ 'api.testnet.frontblock.me' */, apiPort: 10001 } }, + //{ pluginPath: '../../htmlsupplier/static/Plugin' }, + { pluginPath: 'frontblock/FrontblockApiClient', conf:{ apiHost: /*/ 'localhost' */ 'api.testnet.frontblock.me' , apiPort: 10001 } } ] const express = require('express')