mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-07-22 01:29:14 +00:00
7 lines
224 B
Bash
Executable file
Vendored
7 lines
224 B
Bash
Executable file
Vendored
#!/bin/bash
|
|
# Run coordinator first
|
|
go run cmd/main.go -overlordhost overlord &
|
|
# Wait till overlord finish initialized
|
|
# Run a worker connecting to overlord
|
|
sleep 3s
|
|
go run cmd/main.go -overlordhost ws://localhost:8000/wso
|