mirror of https://github.com/morpheus65535/bazarr
not log: Fix base_url issue during development
This commit is contained in:
parent
56c4616047
commit
03de446691
|
@ -1,3 +1,4 @@
|
|||
/* eslint-disable no-console */
|
||||
/// <reference types="node" />
|
||||
|
||||
import { readFile } from "fs/promises";
|
||||
|
@ -40,6 +41,8 @@ export default async function overrideEnv(env: Record<string, string>) {
|
|||
try {
|
||||
const apiKey = await read(configPath, "auth", "apikey");
|
||||
|
||||
console.log(`Using API key: ${apiKey}`);
|
||||
|
||||
env["VITE_API_KEY"] = apiKey;
|
||||
process.env["VITE_API_KEY"] = apiKey;
|
||||
} catch (err) {
|
||||
|
@ -54,7 +57,9 @@ export default async function overrideEnv(env: Record<string, string>) {
|
|||
const port = await read(configPath, "general", "port");
|
||||
const baseUrl = await read(configPath, "general", "base_url");
|
||||
|
||||
const url = `http://localhost:${port}${baseUrl}`;
|
||||
const url = `http://127.0.0.1:${port}${baseUrl}`;
|
||||
|
||||
console.log(`Using backend url: ${url}`);
|
||||
|
||||
env["VITE_PROXY_URL"] = url;
|
||||
process.env["VITE_PROXY_URL"] = url;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import SocketIO from "@/modules/socketio";
|
||||
import { LOG } from "@/utilities/console";
|
||||
import { setLoginRequired } from "@/utilities/event";
|
||||
import Axios, { AxiosError, AxiosInstance, CancelTokenSource } from "axios";
|
||||
import { Environment } from "../../utilities";
|
||||
|
@ -8,6 +9,9 @@ class BazarrClient {
|
|||
|
||||
constructor() {
|
||||
const baseUrl = `${Environment.baseUrl}/api/`;
|
||||
|
||||
LOG("info", "initializing BazarrClient with", baseUrl);
|
||||
|
||||
this.initialize(baseUrl, Environment.apiKey);
|
||||
SocketIO.initialize();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue