Fix start-prod(-multi) to actually use different identities than default messenger, also connect dev instances to the dev public chat and clean up the config files a lil

pull/491/head
Beaudan Brown 6 years ago
parent 1cf6ccafc6
commit 5a35f05f29

@ -7,11 +7,19 @@
"defaultPoWDifficulty": "1",
"seedNodeList": [
{
"ip": "storage.testnetseed1.loki.network",
"ip": "storage.seed1.loki.network",
"port": "22023"
},
{
"ip": "storage.seed2.loki.network",
"port": "38157"
},
{
"ip": "imaginary.stream",
"port": "38157"
}
],
"disableAutoUpdate": false,
"disableAutoUpdate": true,
"updatesUrl": "https://updates2.signal.org/desktop",
"updatesPublicKey":
"fd7dd3de7149dc0a127909fee7de0f7620ddd0de061b37a2c303e37de802a401",

@ -1,6 +1,12 @@
{
"storageProfile": "development1",
"localServerPort": "8082",
"disableAutoUpdate": true,
"openDevTools": true
"seedNodeList": [
{
"ip": "storage.testnetseed1.loki.network",
"port": "38157"
}
],
"openDevTools": true,
"defaultPublicChatServer": "https://chat-dev.lokinet.org/"
}

@ -1,4 +1,11 @@
{
"storageProfile": "development",
"openDevTools": true
"seedNodeList": [
{
"ip": "storage.testnetseed1.loki.network",
"port": "38157"
}
],
"openDevTools": true,
"defaultPublicChatServer": "https://chat-dev.lokinet.org/"
}

@ -0,0 +1,4 @@
{
"storageProfile": "devprodProfile",
"openDevTools": true
}

@ -0,0 +1,5 @@
{
"storageProfile": "devprod1Profile",
"localServerPort": "8082",
"openDevTools": true
}

@ -1,16 +1 @@
{
"seedNodeList": [
{
"ip": "storage.seed1.loki.network",
"port": "22023"
},
{
"ip": "storage.seed2.loki.network",
"port": "38157"
},
{
"ip": "imaginary.stream",
"port": "38157"
}
]
}
{}

@ -14,8 +14,8 @@
"postinstall": "electron-builder install-app-deps && rimraf node_modules/dtrace-provider",
"start": "electron .",
"start-multi": "NODE_APP_INSTANCE=1 electron .",
"start-prod": "NODE_ENV=production LOKI_DEV=1 electron .",
"start-prod-multi": "NODE_ENV=production LOKI_DEV=1 NODE_APP_INSTANCE=1 electron .",
"start-prod": "NODE_ENV=production NODE_APP_INSTANCE=devprod LOKI_DEV=1 electron .",
"start-prod-multi": "NODE_ENV=production NODE_APP_INSTANCE=devprod1 LOKI_DEV=1 electron .",
"grunt": "grunt",
"icon-gen": "electron-icon-maker --input=images/icon_1024.png --output=./build",
"generate": "yarn icon-gen && yarn grunt",

Loading…
Cancel
Save