added files server to remotes

This commit is contained in:
SrGooglo 2023-05-31 01:35:07 +00:00
parent d5977ff2b2
commit f655eea613

View File

@ -17,6 +17,7 @@ const envOrigins = {
livestreaming: `http://${getCurrentHostname()}:3030`, livestreaming: `http://${getCurrentHostname()}:3030`,
marketplace: `http://${getCurrentHostname()}:3040`, marketplace: `http://${getCurrentHostname()}:3040`,
music: `http://${getCurrentHostname()}:3050`, music: `http://${getCurrentHostname()}:3050`,
files: `http://${getCurrentHostname()}:3060`,
}, },
"production": { "production": {
default: "https://api.comty.app", default: "https://api.comty.app",
@ -24,6 +25,7 @@ const envOrigins = {
livestreaming: `https://livestreaming_api.comty.app`, livestreaming: `https://livestreaming_api.comty.app`,
marketplace: `https://marketplace_api.comty.app`, marketplace: `https://marketplace_api.comty.app`,
music: `https://music_api.comty.app`, music: `https://music_api.comty.app`,
files: `https://files_api.comty.app`,
} }
} }
@ -48,4 +50,8 @@ export default {
marketplace: { marketplace: {
origin: composeRemote("marketplace"), origin: composeRemote("marketplace"),
}, },
files: {
origin: composeRemote("files"),
hasWebsocket: false,
}
} }