This commit is contained in:
Dongho Kim
2026-05-17 16:33:43 +02:00
commit a221870b70
20 changed files with 1285 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/bin/bash
set -euo pipefail
cd "$(dirname "$0")/.."
# Build the server
echo "Building server..."
go build -o server_bin main.go
echo "Starting server..."
./server_bin "$@"