fix(all): Removed router.
This commit is contained in:
parent
9b17ebeecf
commit
5590460000
3 changed files with 18 additions and 9 deletions
|
@ -700,14 +700,14 @@ await fs.writeFile('.env', env);
|
||||||
let isEdit = false;
|
let isEdit = false;
|
||||||
|
|
||||||
// Loop through column A to find the row where name matches, or find the next empty row
|
// Loop through column A to find the row where name matches, or find the next empty row
|
||||||
for (let i = 1; i <= rows.length; i++) {
|
for (let i = 7; i <= rows.length; i++) {
|
||||||
let result = rows[i - 1][0];
|
let result = rows[i - 1][0];
|
||||||
if (result && result.toLowerCase() === name.toLowerCase()) {
|
if (result && result.toLowerCase() === name.toLowerCase()) {
|
||||||
address = `B${i}:B${i}`; // Match found, update value in column B
|
address = `B${i}:B${i}`; // Match found, update value in column B
|
||||||
isEdit = true; // We are in editing mode
|
isEdit = true; // We are in editing mode
|
||||||
break;
|
break;
|
||||||
} else if (!result && lastEmptyRow === -1) {
|
} else if (!result && lastEmptyRow === -1) {
|
||||||
lastEmptyRow = i; // Store the first empty row if no match is found
|
lastEmptyRow = i ; // Store the first empty row if no match is found
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -283,15 +283,17 @@ export class GBServer {
|
||||||
} else {
|
} else {
|
||||||
// Setups unsecure http redirect.
|
// Setups unsecure http redirect.
|
||||||
const proxy = httpProxy.createProxyServer({});
|
const proxy = httpProxy.createProxyServer({});
|
||||||
GBLogEx.verbose(0, `Redirecting... ${req.originalUrl}`);
|
|
||||||
|
|
||||||
if (host === process.env.API_HOST) {
|
if (host === process.env.API_HOST) {
|
||||||
|
GBLogEx.info(0, `Redirecting to API...`);
|
||||||
return proxy.web(req, res, { target: 'http://localhost:1111' }); // Express server
|
return proxy.web(req, res, { target: 'http://localhost:1111' }); // Express server
|
||||||
} else if (host === process.env.ROUTER_1) {
|
} else if (host === process.env.ROUTER_1) {
|
||||||
return proxy.web(req, res, { target: `http://localhost:${process.env.ROUTER_1_PORT}` });
|
GBLogEx.info(0, `Redirecting...`);
|
||||||
|
return proxy.web(req, res, { target: `http://localhost:${process.env.ROUTER_1_PORT}` }); // Express server
|
||||||
|
|
||||||
} else if (host === process.env.ROUTER_2) {
|
} else if (host === process.env.ROUTER_2) {
|
||||||
return proxy.web(req, res, { target: `http://localhost:${process.env.ROUTER_2_PORT}` });
|
GBLogEx.info(0, `Redirecting...`);
|
||||||
|
return proxy.web(req, res, { target: `http://localhost:${process.env.ROUTER_2_PORT}` }); // Express server
|
||||||
} else {
|
} else {
|
||||||
await GBSSR.ssrFilter(req, res, next);
|
await GBSSR.ssrFilter(req, res, next);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,19 @@
|
||||||
BEGIN TALK
|
BEGIN TALK
|
||||||
Welcome to the General Bots AI Search Template!
|
|
||||||
|
|
||||||
|
General Bots AI Search
|
||||||
|
|
||||||
|
Comprehensive Document Search
|
||||||
|
Supports all document types, displays PDF pages with AI summaries, and integrates seamlessly with EDM systems.
|
||||||
|
|
||||||
We are here to assist you! To get started, please choose one of the options below:
|
We are here to assist you! To get started, please choose one of the options below:
|
||||||
|
1 - Scan a QR Code: Send a photo of the QR Code you would like to scan typping 'qr'.
|
||||||
1 - Scan a QR Code: Send a photo of the QR Code you would like to scan typping 'QR'.
|
|
||||||
|
|
||||||
2 - Find a Procedure: If you need information about a specific procedure, just let me know what it is, and I will help you!
|
2 - Find a Procedure: If you need information about a specific procedure, just let me know what it is, and I will help you!
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
How to send a fax?
|
||||||
|
How to clean the machine?
|
||||||
|
How to find a contact?
|
||||||
|
|
||||||
Let’s get started!
|
Let’s get started!
|
||||||
END TALK
|
END TALK
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue