2021-09-07 09:42:48 +03:00
|
|
|
const dev = {
|
2022-05-14 19:03:48 +03:00
|
|
|
REVERSE_PROXY_API_URL: "http://localhost:5050",
|
2021-09-07 09:42:48 +03:00
|
|
|
CHATBOT_API_URL: "http://localhost:5061",
|
|
|
|
REVERSE_PROXY_DOCS_URL: "https://toodle.ddns.net/docs/books/reverse-proxy"
|
|
|
|
};
|
|
|
|
|
2021-09-07 19:21:25 +03:00
|
|
|
const prod = {
|
|
|
|
NODE_ENV: "production",
|
|
|
|
PUBLIC_URL: "/reverse-proxy",
|
|
|
|
REVERSE_PROXY_API_URL: "https://toodle.ddns.net/reverse-proxy-api",
|
|
|
|
CHATBOT_API_URL: "https://toodle.ddns.net/chatbot-api",
|
|
|
|
REVERSE_PROXY_DOCS_URL: "https://toodle.ddns.net/docs/books/reverse-proxy"
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = { dev, prod };
|