Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@ jobs:

services:
test-server:
image: ghcr.io/tf2pickup-org/tf2-gameserver:latest
ports:
- 27015:27015/tcp
- 27015:27015/udp
- 27020:27020/udp
env:
SERVER_HOSTNAME: 'test rcon server'
PORT: 27015
CLIENT_PORT: 27016
STEAM_PORT: 27017
STV_PORT: 27020
RCON_PASSWORD: 'password'
options: --tty --add-host host.docker.internal:host-gateway
image: ghcr.io/tf2pickup-org/tf2-gameserver:latest
ports:
- 27015:27015/tcp
- 27015:27015/udp
- 27020:27020/udp
env:
SERVER_HOSTNAME: "test rcon server"
PORT: 27015
CLIENT_PORT: 27016
STEAM_PORT: 27017
STV_PORT: 27020
RCON_PASSWORD: "password"
options: --tty --add-host host.docker.internal:host-gateway

steps:
- uses: actions/checkout@v4

Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
.vscode
deno.lock
10 changes: 10 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"deno.enable": true,
"deno.lint": true,
"[typescript]": {
"editor.defaultFormatter": "denoland.vscode-deno"
},
"[json]": {
"editor.defaultFormatter": "denoland.vscode-deno"
}
}
4 changes: 2 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
},
"imports": {
"@std/bytes": "jsr:@std/bytes@^1.0.6",
"@std/cli": "jsr:@std/cli@^1.0.22",
"@std/async": "jsr:@std/async@^1.0.14"
"@std/cli": "jsr:@std/cli@^1.0.23",
"@std/async": "jsr:@std/async@^1.0.15"
},
"version": "0.0.7",
"exports": "./mod.ts",
Expand Down
2 changes: 0 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ services:
- "STEAM_PORT=27017"
- "STV_PORT=27020"
- "RCON_PASSWORD=password"
ports:
- 27015:27015
network_mode: host
stdin_open: true
tty: true