fix(all): Removed router.

This commit is contained in:
me@rodrigorodriguez.com 2024-10-28 09:43:02 -03:00
parent 9b17ebeecf
commit 5590460000
3 changed files with 18 additions and 9 deletions

View file

@ -700,7 +700,7 @@ await fs.writeFile('.env', env);
let isEdit = false;
// 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];
if (result && result.toLowerCase() === name.toLowerCase()) {
address = `B${i}:B${i}`; // Match found, update value in column B

View file

@ -283,15 +283,17 @@ export class GBServer {
} else {
// Setups unsecure http redirect.
const proxy = httpProxy.createProxyServer({});
GBLogEx.verbose(0, `Redirecting... ${req.originalUrl}`);
if (host === process.env.API_HOST) {
GBLogEx.info(0, `Redirecting to API...`);
return proxy.web(req, res, { target: 'http://localhost:1111' }); // Express server
} 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) {
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 {
await GBSSR.ssrFilter(req, res, next);
}

View file

@ -1,12 +1,19 @@
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:
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!
Examples:
How to send a fax?
How to clean the machine?
How to find a contact?
Lets get started!
END TALK