2019-08-23 17:54:08 +02:00
|
|
|
const config = {
|
2019-08-26 23:31:17 +02:00
|
|
|
WEBPACK_WEB_PORT: 9090,
|
|
|
|
WEBPACK_ELECTRON_PORT: 9091,
|
2019-12-02 18:30:08 +01:00
|
|
|
WEB_SERVER_PORT: 1337,
|
2019-11-20 21:57:38 +01:00
|
|
|
DOMAIN: 'lbry.tv',
|
|
|
|
URL: 'https://lbry.tv',
|
2019-10-21 20:06:12 +02:00
|
|
|
SITE_TITLE: 'lbry.tv',
|
2019-10-22 16:40:57 +02:00
|
|
|
LBRY_TV_API: 'https://api.lbry.tv',
|
2020-03-26 19:33:33 +01:00
|
|
|
LBRY_TV_STREAMING_API: 'https://lbryplayer.xyz',
|
2020-02-19 07:31:40 +01:00
|
|
|
WELCOME_VERSION: 1.0,
|
2019-08-23 17:54:08 +02:00
|
|
|
};
|
|
|
|
|
2019-11-20 21:57:38 +01:00
|
|
|
config.URL_LOCAL = `http://localhost:${config.WEB_SERVER_PORT}`;
|
|
|
|
config.URL_DEV = `http://localhost:${config.WEBPACK_WEB_PORT}`;
|
2019-08-23 17:54:08 +02:00
|
|
|
|
|
|
|
module.exports = config;
|