llm-rag-vectordb-python / setupProxy.js
something01's picture
Upload 35 files
1830d05 verified
raw
history blame contribute delete
No virus
265 Bytes
const { createProxyMiddleware } = require('http-proxy-middleware');
const proxy = {
target: 'https://q45f9ormi0.execute-api.us-east-1.amazonaws.com/',
changeOrigin: true,
};
module.exports = function (app) {
app.use('/test', createProxyMiddleware(proxy));
};