mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-07-21 09:08:57 +00:00
8 lines
294 B
Bash
Executable file
Vendored
8 lines
294 B
Bash
Executable file
Vendored
#!/bin/bash
|
|
go build -o klog ./cmd
|
|
# Run coordinator first
|
|
./klog -overlordhost overlord &
|
|
# Wait till overlord finish initialized
|
|
# Run a worker connecting to overlord
|
|
./klog -overlordhost ws://localhost:8000/wso
|
|
# NOTE: Overlord and worker should be run separately. Local is for demo purpose
|