fix(all): Fixing CI integration bugs.
This commit is contained in:
parent
ae29dda0fa
commit
b2c1dda2b2
1 changed files with 6 additions and 1 deletions
|
@ -127,6 +127,7 @@ export class GBServer {
|
|||
if (proxy !== undefined) {
|
||||
GBServer.globals.publicAddress = proxy;
|
||||
} else {
|
||||
|
||||
// Ensure that local development proxy is setup.
|
||||
|
||||
GBLog.info(`Establishing a development local proxy (ngrok)...`);
|
||||
|
@ -223,6 +224,7 @@ export class GBServer {
|
|||
|
||||
const loggers = GBLog.getLogger();
|
||||
winston.default(server, loggers[1]);
|
||||
|
||||
}
|
||||
|
||||
GBLog.info(`The Bot Server is in RUNNING mode...`);
|
||||
|
@ -230,13 +232,16 @@ export class GBServer {
|
|||
// Opens Navigator.
|
||||
|
||||
// TODO: Config: core.openBrowserInDevelopment();
|
||||
|
||||
} catch (err) {
|
||||
GBLog.error(`STOP: ${err.message ? err.message : err} ${err.stack ? err.stack : ''}`);
|
||||
process.exit(1);
|
||||
}
|
||||
})();
|
||||
};
|
||||
// TODO: Move to .gbot folder myown.com pointing to generalbots.ai/myown
|
||||
|
||||
// TODO: Move to .gbot folder myown.com pointing to generalbots.ai/myown.
|
||||
|
||||
if (process.env.CERTIFICATE_PFX) {
|
||||
const options1 = {
|
||||
passphrase: process.env.CERTIFICATE_PASSPHRASE,
|
||||
|
|
Loading…
Add table
Reference in a new issue