aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--public/scripts/chat.js4
2 files changed, 3 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore
index 8faa4dd..684d87a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -63,3 +63,4 @@ typings/
# Custom
.idea
dist/*
+deploy.sh
diff --git a/public/scripts/chat.js b/public/scripts/chat.js
index eda7a24..eac7246 100644
--- a/public/scripts/chat.js
+++ b/public/scripts/chat.js
@@ -15,7 +15,7 @@ const swal = require('sweetalert');
const xkcdPassword = require('xkcd-password');
// setup vars
-const host = '127.0.0.1';
+const host = 'meta.marvinborner.de';
let peerId, call, passphrase, connectedPeer;
let connectedPeers = []; // TODO: Save new peers in array
@@ -84,7 +84,7 @@ function chat() {
$('#chat').fadeIn();
// start the peer
- const peer = new Peer(peerId, {host: host, port: 8080, path: '/api', debug: 0});
+ const peer = new Peer(peerId, {host: host, port: 4242, path: '/api', debug: 0});
// Peer events
peer.on('call', call => getMediaStream(stream => call.answer(stream))); // TODO: Ask for call accept