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-08-23 17:54:08 +02:00
|
|
|
WEB_SERVER_PORT: 1337,
|
|
|
|
DOMAIN: 'https://beta.lbry.tv',
|
|
|
|
};
|
|
|
|
|
|
|
|
config.DOMAIN_LOCAL = `http://localhost:${config.WEB_SERVER_PORT}`;
|
|
|
|
config.DOMAIN_DEV = `http://localhost:${config.WEBPACK_WEB_PORT}`;
|
|
|
|
|
|
|
|
module.exports = config;
|