mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 06:44:06 +02:00
use dev metaverse
This commit is contained in:
parent
4d0580c28a
commit
0e86be8660
4 changed files with 9 additions and 11 deletions
|
@ -618,14 +618,6 @@
|
|||
"name": "permissions_id",
|
||||
"label": "Group Name"
|
||||
},
|
||||
{
|
||||
"name": "rank",
|
||||
"label": "Rank"
|
||||
},
|
||||
{
|
||||
"name": "rank_name",
|
||||
"label": "Rank Name"
|
||||
},
|
||||
{
|
||||
"name": "group_id",
|
||||
"label": "Group ID",
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
var Settings = {
|
||||
showAdvanced: false,
|
||||
METAVERSE_URL: 'https://metaverse.highfidelity.com',
|
||||
// METAVERSE_URL: 'https://metaverse.highfidelity.com',
|
||||
// METAVERSE_URL: 'http://localhost:3000',
|
||||
METAVERSE_URL: 'https://devdataweb.highfidelity.com',
|
||||
ADVANCED_CLASS: 'advanced-setting',
|
||||
TRIGGER_CHANGE_CLASS: 'trigger-change',
|
||||
DATA_ROW_CLASS: 'value-row',
|
||||
|
|
|
@ -44,7 +44,9 @@
|
|||
|
||||
int const DomainServer::EXIT_CODE_REBOOT = 234923;
|
||||
|
||||
const QString ICE_SERVER_DEFAULT_HOSTNAME = "ice.highfidelity.com";
|
||||
// const QString ICE_SERVER_DEFAULT_HOSTNAME = "ice.highfidelity.com";
|
||||
// const QString ICE_SERVER_DEFAULT_HOSTNAME = "localhost";
|
||||
const QString ICE_SERVER_DEFAULT_HOSTNAME = "devdataweb.highfidelity.com";
|
||||
|
||||
DomainServer::DomainServer(int argc, char* argv[]) :
|
||||
QCoreApplication(argc, argv),
|
||||
|
|
|
@ -15,7 +15,9 @@
|
|||
#include <QtCore/QUrl>
|
||||
|
||||
namespace NetworkingConstants {
|
||||
const QUrl METAVERSE_SERVER_URL = QUrl("https://metaverse.highfidelity.com");
|
||||
// const QUrl METAVERSE_SERVER_URL = QUrl("https://metaverse.highfidelity.com");
|
||||
// const QUrl METAVERSE_SERVER_URL = QUrl("http://localhost:3000");
|
||||
const QUrl METAVERSE_SERVER_URL = QUrl("https://devdataweb.highfidelity.com");
|
||||
}
|
||||
|
||||
#endif // hifi_NetworkingConstants_h
|
||||
|
|
Loading…
Reference in a new issue