Skip to content

Commit 4e6dd24

Browse files
committed
Change default port from 8083 to 8084
This better fits the port assignment in the GC docker compose setup.
1 parent 45e4566 commit 4e6dd24

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ The binary is self-contained. No dependencies are required.
2929
You can also use pre-build docker images:
3030
```shell
3131
docker pull robocupssl/ssl-remote-control
32-
docker run -p 8083:8083 robocupssl/ssl-remote-control
32+
docker run -p 8084:8084 robocupssl/ssl-remote-control
3333
```
3434

35-
By default, the UI is available at http://localhost:8083
35+
By default, the UI is available at http://localhost:8084
3636

3737
## Development
3838

cmd/ssl-remote-control/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"net/http"
1111
)
1212

13-
var address = flag.String("address", ":8083", "The address on which the UI and API is served, default: :8083")
13+
var address = flag.String("address", ":8084", "The address on which the UI and API is served, default: :8084")
1414
var refereeAddress = flag.String("refereeAddress", "224.5.23.1:10003", "The multicast address of the referee (GC), default: 224.5.23.1:10003")
1515
var remoteControlAddress = flag.String("remoteControlAddress", "localhost:10011", "Address to connect to")
1616
var autoDetectHost = flag.Bool("autoDetectHost", true, "Automatically detect the game-controller host and replace it with the host given in address")

frontend/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default defineConfig({
77
server: {
88
proxy: {
99
'/api': {
10-
target: 'http://localhost:8083',
10+
target: 'http://localhost:8084',
1111
changeOrigin: true,
1212
secure: false,
1313
ws: true,

rpi/.xinitrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ xrandr --output DSI-1 --rotate right
1515
xinput set-prop "raspberrypi-ts" --type=float "Coordinate Transformation Matrix" 0 1 0 -1 0 1 0 0 1
1616

1717
# Start browser in kiosk mode
18-
#chromium-browser http://localhost:8083 --start-fullscreen --kiosk --incognito --noerrdialogs --no-first-run --disk-cache-dir=/dev/null
18+
#chromium-browser http://localhost:8084 --start-fullscreen --kiosk --incognito --noerrdialogs --no-first-run --disk-cache-dir=/dev/null
1919

2020
# Start nw.js
2121
nwjs ~/nwjs

rpi/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ssl-remote-control",
3-
"main": "http://localhost:8083",
3+
"main": "http://localhost:8084",
44
"chromium-args": "--disable-pinch --overscroll-history-navigation=0",
55
"window": {
66
"kiosk": true,

0 commit comments

Comments
 (0)