Skip to content

Commit 77c9de0

Browse files
remove port config
1 parent 1722f98 commit 77c9de0

File tree

4 files changed

+3
-20
lines changed

4 files changed

+3
-20
lines changed

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
image: ghcr.io/iloveicedgreentea/gowatchit:latest
66
ports:
77
- '9999:9999'
8-
environment: #
8+
environment:
99
SUPER_DEBUG: 'false'
1010
LOG_LEVEL: 'info'
1111
volumes:

readme.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,14 @@ You can configure this to only load BEQ profiles, or do everything else besides
7878
> ℹ If you are using Jellyfin, read the Jellyfin specific instructions below
7979
8080
1) Deploy the latest version `ghcr.io/iloveicedgreentea/gowatchit:latest` to your preferred Docker environment
81+
* a docker-compose example is provided in the repo
8182
2) You must mount a volume to `/data`
8283
3) Configure the application via web ui -> `http://(your-server-ip):9999`
8384
4) Set up your player with the instructions below
8485

8586
### Plex Specifics
8687
1) get your player UUID(s) from `https://plex.tv/devices.xml` while logged in
87-
2) Set up Plex to send webhooks to your server IP, `listenPort`, and the handler endpoint of `/plexwebhook`
88+
2) Set up Plex to send webhooks to your server IP, port 9999, and the handler endpoint of `/plexwebhook`
8889
* e.g `(your-server-ip):9999/plexwebhook`
8990
3) Whitelist your server IP in Plex so it can call the API without authentication. [Docs](https://support.plex.tv/articles/200890058-authentication-for-local-network-access/)
9091
4) Add UUID(s) and user filters to the application config

web/app.js

-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
function populateFields(config) {
2-
document.getElementById('listenport').value = config.main.listenport;
32
// .checked or .value for each kind for each item in HTML
43

54
// EZBeq
@@ -105,10 +104,6 @@ function buildFinalConfig() {
105104
"stopscriptname": document.getElementById('homeassistant-stopscriptname').value
106105
};
107106

108-
const mainConfig = {
109-
"listenport": document.getElementById('listenport').value
110-
};
111-
112107
const mqttConfig = {
113108
"enabled": document.getElementById('mqtt-enabled').checked,
114109
"url": document.getElementById('mqtt-url').value,
@@ -149,7 +144,6 @@ function buildFinalConfig() {
149144
const finalConfig = {
150145
"ezbeq": ezbeqConfig,
151146
"homeassistant": homeAssistantConfig,
152-
"main": mainConfig,
153147
"mqtt": mqttConfig,
154148
"plex": plexConfig,
155149
"jellyfin": jellyfinConfig,

web/index.html

-12
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,6 @@ <h4>You don't need quotes for anything</h4>
1616

1717
<form id="ezbeqForm">
1818

19-
<!-- Main Section -->
20-
<h2>Main</h2>
21-
<div>
22-
<label for="listenport">Listen Port
23-
<span class="description">
24-
The port on which the main service will listen for incoming connections.
25-
</span>
26-
27-
</label>
28-
<input type="text" id="listenport" name="main.listenport">
29-
</div>
30-
3119
<!-- EZBeq Section -->
3220
<h2>EZBeq</h2>
3321
<div>

0 commit comments

Comments
 (0)