remove development configuration values

This commit is contained in:
Nick Krecklow 2020-05-05 23:47:04 -05:00
parent 49379acc77
commit ac06ae884e
No known key found for this signature in database
GPG Key ID: 5F149FDE156FFA94
2 changed files with 2 additions and 2 deletions

@ -15,7 +15,7 @@ export class SocketManager {
webSocketProtocol = 'wss:' webSocketProtocol = 'wss:'
} }
this._webSocket = new WebSocket(webSocketProtocol + '//' + location.hostname + ':8080') this._webSocket = new WebSocket(webSocketProtocol + '//' + location.host)
// The backend will automatically push data once connected // The backend will automatically push data once connected
this._webSocket.onopen = () => { this._webSocket.onopen = () => {

@ -9,6 +9,6 @@
"pingAll": 3000, "pingAll": 3000,
"connectTimeout": 2500 "connectTimeout": 2500
}, },
"logToDatabase": true, "logToDatabase": false,
"graphDuration": 86400000 "graphDuration": 86400000
} }